From 1c1e6d0fd8d994184c052e00dd7158867f143f48 Mon Sep 17 00:00:00 2001 From: Martin Odersky Date: Wed, 1 Nov 2006 12:08:43 +0000 Subject: fix^2 of bug758 (last one broke the build) --- test/files/pos/bug758.scala | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 test/files/pos/bug758.scala (limited to 'test') diff --git a/test/files/pos/bug758.scala b/test/files/pos/bug758.scala new file mode 100644 index 0000000000..160bf37172 --- /dev/null +++ b/test/files/pos/bug758.scala @@ -0,0 +1,7 @@ +trait A { type T; type M >: T } +trait B extends A { + val x : String; + val u : A { type T = B.this.T } ; + type T = x.type; + type M = u.M +} -- cgit v1.2.3