aboutsummaryrefslogtreecommitdiff
path: root/tests/untried
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2014-12-19 15:21:34 +0100
committerMartin Odersky <odersky@gmail.com>2014-12-19 15:21:34 +0100
commit63c582b39ba8a248c9d6ad23db2224ea4a809a58 (patch)
treed953fd9c0b8b8e7c6f22158e27dff9db8944d745 /tests/untried
parent73d008317a6afaa0fea103ec0c84a39386f7d776 (diff)
downloaddotty-63c582b39ba8a248c9d6ad23db2224ea4a809a58.tar.gz
dotty-63c582b39ba8a248c9d6ad23db2224ea4a809a58.tar.bz2
dotty-63c582b39ba8a248c9d6ad23db2224ea4a809a58.zip
Test re-org.
Moved some working test to pos. I wonder why they were in pending? They did work for me.
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
-}
-*/