aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/java-interop/t1263/test.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/java-interop/t1263/test.scala')
-rw-r--r--tests/pending/pos/java-interop/t1263/test.scala10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/pending/pos/java-interop/t1263/test.scala b/tests/pending/pos/java-interop/t1263/test.scala
new file mode 100644
index 000000000..92d8c1cdf
--- /dev/null
+++ b/tests/pending/pos/java-interop/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
+ }
+}
+