summaryrefslogtreecommitdiff
path: root/test/files/pos/matthias1.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/matthias1.scala')
-rw-r--r--test/files/pos/matthias1.scala15
1 files changed, 0 insertions, 15 deletions
diff --git a/test/files/pos/matthias1.scala b/test/files/pos/matthias1.scala
deleted file mode 100644
index a923a529fe..0000000000
--- a/test/files/pos/matthias1.scala
+++ /dev/null
@@ -1,15 +0,0 @@
-class A() {
- class B() {
- def foo(x: B) = 0
- }
-}
-object test {
- def main = {
- val a = new A();
- val b = new a.B();
- val c = new a.B();
- val d = b.foo(c);
- ()
- }
-}
-