aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/matthias1.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/matthias1.scala')
-rw-r--r--tests/pending/pos/matthias1.scala15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/pending/pos/matthias1.scala b/tests/pending/pos/matthias1.scala
deleted file mode 100644
index a923a529f..000000000
--- a/tests/pending/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);
- ()
- }
-}
-