From a2c870569c124cbf090f7c85cea3269d95ff4170 Mon Sep 17 00:00:00 2001 From: Paul Phillips Date: Sat, 8 Sep 2012 14:44:21 -0700 Subject: Fix for SI-6340, error message regression. --- test/files/neg/t6340.check | 10 ++++++++++ test/files/neg/t6340.scala | 21 +++++++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 test/files/neg/t6340.check create mode 100644 test/files/neg/t6340.scala (limited to 'test/files') diff --git a/test/files/neg/t6340.check b/test/files/neg/t6340.check new file mode 100644 index 0000000000..f18b8c3f4b --- /dev/null +++ b/test/files/neg/t6340.check @@ -0,0 +1,10 @@ +t6340.scala:11: error: value D is not a member of object Foo + import Foo.{ A, B, C, D, E, X, Y, Z } + ^ +t6340.scala:16: error: not found: type D + val d = new D + ^ +t6340.scala:17: error: not found: type W + val w = new W + ^ +three errors found diff --git a/test/files/neg/t6340.scala b/test/files/neg/t6340.scala new file mode 100644 index 0000000000..8934d5c15d --- /dev/null +++ b/test/files/neg/t6340.scala @@ -0,0 +1,21 @@ +object Foo { + class A + class B + class C + class X + class Y + class Z +} + +object Test { + import Foo.{ A, B, C, D, E, X, Y, Z } + + val a = new A + val b = new B + val c = new C + val d = new D + val w = new W + val x = new X + val y = new Y + val z = new Z +} -- cgit v1.2.3