summaryrefslogtreecommitdiff
path: root/test/files/neg/t630.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/t630.scala')
-rw-r--r--test/files/neg/t630.scala23
1 files changed, 23 insertions, 0 deletions
diff --git a/test/files/neg/t630.scala b/test/files/neg/t630.scala
new file mode 100644
index 0000000000..8a073963b0
--- /dev/null
+++ b/test/files/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
+}