summaryrefslogtreecommitdiff
path: root/test-nsc/files/pos/abstract.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test-nsc/files/pos/abstract.scala')
-rw-r--r--test-nsc/files/pos/abstract.scala9
1 files changed, 0 insertions, 9 deletions
diff --git a/test-nsc/files/pos/abstract.scala b/test-nsc/files/pos/abstract.scala
deleted file mode 100644
index 533f996931..0000000000
--- a/test-nsc/files/pos/abstract.scala
+++ /dev/null
@@ -1,9 +0,0 @@
-abstract class C() {
- type t;
- def copy(x: t): t = x;
-}
-
-class D() extends C() {
- type t = Int;
- System.out.println(copy(1));
-}