aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t3486/test.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/t3486/test.scala')
-rw-r--r--tests/untried/pos/t3486/test.scala6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/untried/pos/t3486/test.scala b/tests/untried/pos/t3486/test.scala
new file mode 100644
index 000000000..d4534e29f
--- /dev/null
+++ b/tests/untried/pos/t3486/test.scala
@@ -0,0 +1,6 @@
+trait Test[A] {
+ def m( a: A ): A
+ def specified(a:A):A = a
+}
+
+abstract class T2[A] extends Test[A]