summaryrefslogtreecommitdiff
path: root/test/files/neg/specification-scopes.check
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2012-01-14 22:16:52 -0800
committerPaul Phillips <paulp@improving.org>2012-01-14 22:16:52 -0800
commit9eb56b99610d734088a0dd2da7cded49211eff3a (patch)
treef1f841dd3f878128b3c0ef0a738aeba9758b9efe /test/files/neg/specification-scopes.check
parent3024efcbf902417017b6ec0a442a3db4cf930d22 (diff)
downloadscala-9eb56b99610d734088a0dd2da7cded49211eff3a.tar.gz
scala-9eb56b99610d734088a0dd2da7cded49211eff3a.tar.bz2
scala-9eb56b99610d734088a0dd2da7cded49211eff3a.zip
Test case backing spec.
Added code from SLS 2.0.2.
Diffstat (limited to 'test/files/neg/specification-scopes.check')
-rw-r--r--test/files/neg/specification-scopes.check12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/files/neg/specification-scopes.check b/test/files/neg/specification-scopes.check
new file mode 100644
index 0000000000..7af9842379
--- /dev/null
+++ b/test/files/neg/specification-scopes.check
@@ -0,0 +1,12 @@
+P_2.scala:14: error: reference to x is ambiguous;
+it is both defined in object C and imported subsequently by
+import Q.X._
+ println("L14: "+x) // reference to 'x' is ambiguous here
+ ^
+P_2.scala:19: error: reference to y is ambiguous;
+it is imported twice in the same scope by
+import P.X._
+and import X.y
+ println("L19: "+y) // reference to 'y' is ambiguous here
+ ^
+two errors found