From ddcb351a2e0aeea9373a891a05c8db73334470a9 Mon Sep 17 00:00:00 2001 From: Paul Phillips Date: Mon, 11 Jun 2012 13:49:10 -0700 Subject: 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. --- test/files/neg/t3836.check | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 test/files/neg/t3836.check (limited to 'test/files/neg/t3836.check') diff --git a/test/files/neg/t3836.check b/test/files/neg/t3836.check new file mode 100644 index 0000000000..ff2fc36ae9 --- /dev/null +++ b/test/files/neg/t3836.check @@ -0,0 +1,13 @@ +t3836.scala:17: error: reference to IOException is ambiguous; +it is imported twice in the same scope by +import foo.bar._ +and import java.io._ + def f = new IOException // genuinely different + ^ +t3836.scala:26: error: reference to Bippy is ambiguous; +it is imported twice in the same scope by +import baz._ +and import bar._ + def f: Bippy[Int] = ??? + ^ +two errors found -- cgit v1.2.3