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.scala10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/files/pos/t1263/test.scala b/test/files/pos/t1263/test.scala
new file mode 100644
index 0000000000..92d8c1cdfa
--- /dev/null
+++ b/test/files/pos/t1263/test.scala
@@ -0,0 +1,10 @@
+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
+ }
+}
+