summaryrefslogtreecommitdiff
path: root/test/files/pos/t1263/test.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t1263/test.scala')
-rw-r--r--test/files/pos/t1263/test.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/pos/t1263/test.scala b/test/files/pos/t1263/test.scala
index 92d8c1cdfa..7ced59083a 100644
--- a/test/files/pos/t1263/test.scala
+++ b/test/files/pos/t1263/test.scala
@@ -2,7 +2,7 @@ package test
trait Map[A, +B] {
def plus(key: A): MapTo = new MapTo(key)
-
+
class MapTo(key: A) {
def arrow [B1 >: B](value: B1) = null
}