From d49b034739b5071bfbc37c2c010a83d12d7405e4 Mon Sep 17 00:00:00 2001 From: paltherr Date: Mon, 6 Oct 2003 15:27:49 +0000 Subject: - Added bug 176 --- test/files/run/bugs.check | 4 ++++ test/files/run/bugs.scala | 29 +++++++++++++++++++++++++++++ 2 files changed, 33 insertions(+) diff --git a/test/files/run/bugs.check b/test/files/run/bugs.check index c0a07c9b4c..2c74941b17 100644 --- a/test/files/run/bugs.check +++ b/test/files/run/bugs.check @@ -25,3 +25,7 @@ ok <<< bug 174 >>> bug 174 +<<< bug 176 +1 +>>> bug 176 + diff --git a/test/files/run/bugs.scala b/test/files/run/bugs.scala index 6454e12c0f..b84d9827fb 100644 --- a/test/files/run/bugs.scala +++ b/test/files/run/bugs.scala @@ -127,6 +127,34 @@ object Bug174Test { } } + +//############################################################################ +// Bug 176 + +trait Bug176A { + type T; + def foo(x: T): Int; + def bar: T; + def test = foo(bar); +} +trait Bug176B { + type S <: Object; + type T = S; + def foo(x: S): Int; + def bar: S; +} +class Bug176C with Bug176A with Bug176B { + class S; + def foo(x: S) = 1; + def bar = new S; +} +object Bug176Test { + def main(args: Array[String]): Unit = { + val x: Bug176A = new Bug176C; + System.out.println(x.test); + } +} + //############################################################################ // Main @@ -157,6 +185,7 @@ object Test { test(167, Bug167Test.main(args)); test(168, Bug168Test.main(args)); test(174, Bug174Test.main(args)); + test(176, Bug176Test.main(args)); if (errors > 0) { System.out.println(); -- cgit v1.2.3