Skip to content

Commit

Permalink
source-dependencies/value-class-underlying: fix test
Browse files Browse the repository at this point in the history
We were not testing what we thought we were testing before, because C
used the name "x" which is also the name of the parameter we change in
A, so when we changed A we were invalidating C too. Fixed by using a
different name than "x" in C, which reveals that there is a bug
somewhere since the test doesn't pass anymore.
  • Loading branch information
smarter committed Nov 8, 2017
1 parent 73d0585 commit 5a986a4
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
object C {
def main(args: Array[String]): Unit = {
val x = B.foo
println("x: " + x) // Need to use x in an expression to see if it crashes or not
val duck = B.foo
println("duck: " + duck) // Need to use duck in an expression to see if it crashes or not
}
}

0 comments on commit 5a986a4

Please sign in to comment.