aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/neg/t630.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/neg/t630.scala')
-rw-r--r--tests/untried/neg/t630.scala23
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/untried/neg/t630.scala b/tests/untried/neg/t630.scala
new file mode 100644
index 000000000..8a073963b
--- /dev/null
+++ b/tests/untried/neg/t630.scala
@@ -0,0 +1,23 @@
+trait Req1
+
+trait Req2 {
+ def test() = Console.println("Test")
+}
+
+trait Foo {
+ val foo : Req1
+}
+
+trait Bar {
+ val foo : Req2
+ def test() = foo.test
+}
+
+object Test
+ extends Foo
+ with Bar
+{
+ object foo extends Req1
+
+ def main(argv : Array[String]) = test
+}