summaryrefslogtreecommitdiff
path: root/test/files/pos/t3836.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2012-06-11 13:49:10 -0700
committerPaul Phillips <paulp@improving.org>2012-07-05 21:08:29 -0700
commitddcb351a2e0aeea9373a891a05c8db73334470a9 (patch)
treeec0e0efe4a0a1fcb1ef3be96a227770fd5695910 /test/files/pos/t3836.scala
parent34d36108bf152469a934408da2b55c1df9c70a7a (diff)
downloadscala-ddcb351a2e0aeea9373a891a05c8db73334470a9.tar.gz
scala-ddcb351a2e0aeea9373a891a05c8db73334470a9.tar.bz2
scala-ddcb351a2e0aeea9373a891a05c8db73334470a9.zip
Fix SI-3836 not-really-ambiguous import detection.
Normalize types before declaring that two imports are ambiguous, because they might be the same thing. Review by @moors.
Diffstat (limited to 'test/files/pos/t3836.scala')
-rw-r--r--test/files/pos/t3836.scala14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/files/pos/t3836.scala b/test/files/pos/t3836.scala
new file mode 100644
index 0000000000..840f171164
--- /dev/null
+++ b/test/files/pos/t3836.scala
@@ -0,0 +1,14 @@
+package foo
+
+package object bar {
+ type IOException = java.io.IOException
+}
+
+package baz {
+ import java.io._
+ import foo.bar._
+
+ object Test {
+ def f = new IOException
+ }
+}