summaryrefslogtreecommitdiff
path: root/test/files/pos/t3486/test.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t3486/test.scala')
-rw-r--r--test/files/pos/t3486/test.scala6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/files/pos/t3486/test.scala b/test/files/pos/t3486/test.scala
new file mode 100644
index 0000000000..544232b0d1
--- /dev/null
+++ b/test/files/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] \ No newline at end of file