summaryrefslogtreecommitdiff
path: root/test/files/pos/t1560.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t1560.scala')
-rw-r--r--test/files/pos/t1560.scala8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/files/pos/t1560.scala b/test/files/pos/t1560.scala
index fb5592016a..2af299af86 100644
--- a/test/files/pos/t1560.scala
+++ b/test/files/pos/t1560.scala
@@ -1,13 +1,13 @@
object Test extends App {
-
+
trait C[T] {
def t: T
}
-
+
def b: Option[C[x] forSome { type x }] = null
-
+
def c = b match {
case Some(b) => b.t
}
-
+
}