summaryrefslogtreecommitdiff
path: root/test/files/run/t6070.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t6070.scala')
-rw-r--r--test/files/run/t6070.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/run/t6070.scala b/test/files/run/t6070.scala
index b6af48ef21..434949f869 100644
--- a/test/files/run/t6070.scala
+++ b/test/files/run/t6070.scala
@@ -11,7 +11,7 @@ class StringBomb extends Bomb {
def size(that: String): Int = that.length
}
-class IntBomb extends Bomb {
+class IntBomb extends Bomb {
type T = Int
val x = 10
@@ -22,7 +22,7 @@ case class Mean(var bomb: Bomb)
object Test extends App {
def foo(x: Mean) = x match {
- case Mean(b) =>
+ case Mean(b) =>
// BUG: b is assumed to be a stable identifier, but it can actually be mutated
println(b.size({ mutate(); b.x }))
}