summaryrefslogtreecommitdiff
path: root/test/pending/pos/t2610.scala
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@epfl.ch>2009-11-16 17:44:25 +0000
committerAdriaan Moors <adriaan.moors@epfl.ch>2009-11-16 17:44:25 +0000
commit0b236faf92a219bd5a9fa4899c9f7ade677b26f4 (patch)
treebb2ef4970b13c83c433bba32ddff19a718b9bdec /test/pending/pos/t2610.scala
parent6063bf3d78d8b760c9ef88bc21c91dce6ba1a27c (diff)
downloadscala-0b236faf92a219bd5a9fa4899c9f7ade677b26f4.tar.gz
scala-0b236faf92a219bd5a9fa4899c9f7ade677b26f4.tar.bz2
scala-0b236faf92a219bd5a9fa4899c9f7ade677b26f4.zip
test cases in pending
Diffstat (limited to 'test/pending/pos/t2610.scala')
-rw-r--r--test/pending/pos/t2610.scala17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/pending/pos/t2610.scala b/test/pending/pos/t2610.scala
new file mode 100644
index 0000000000..8dd4cde66e
--- /dev/null
+++ b/test/pending/pos/t2610.scala
@@ -0,0 +1,17 @@
+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
+}
+*/ \ No newline at end of file