aboutsummaryrefslogtreecommitdiff
path: root/tests/untried
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried')
-rw-r--r--tests/untried/pos/t2610.scala17
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/untried/pos/t2610.scala b/tests/untried/pos/t2610.scala
deleted file mode 100644
index 8a82b4a72..000000000
--- a/tests/untried/pos/t2610.scala
+++ /dev/null
@@ -1,17 +0,0 @@
-package mada; package defects; package tests
-
-package object bbb {
- def bar = ()
- aaa.foo // value foo is not a member of package mada.defects.tests.aaa
-}
-
-package object aaa {
- def foo = ()
-}
-
-/* compiles successfully if placed here..
-package object bbb {
- def bar = ()
- aaa.foo // value foo is not a member of package mada.defects.tests.aaa
-}
-*/