summaryrefslogtreecommitdiff
path: root/test/files/pos/rebind.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/rebind.scala')
-rw-r--r--test/files/pos/rebind.scala13
1 files changed, 0 insertions, 13 deletions
diff --git a/test/files/pos/rebind.scala b/test/files/pos/rebind.scala
deleted file mode 100644
index 3b7b27ac34..0000000000
--- a/test/files/pos/rebind.scala
+++ /dev/null
@@ -1,13 +0,0 @@
-abstract class Foo {
- class Inner {
- def inner: int = 1;
- }
- def foo: Inner;
-}
-trait Bar {
- type Inner;
- def foo: Inner = foo;
-}
-class Test extends Foo with Bar {
- System.out.println(foo.inner);
-}