summaryrefslogtreecommitdiff
path: root/test/files/run/t2296b
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t2296b')
-rw-r--r--test/files/run/t2296b/J_1.java7
-rw-r--r--test/files/run/t2296b/S_2.scala18
2 files changed, 0 insertions, 25 deletions
diff --git a/test/files/run/t2296b/J_1.java b/test/files/run/t2296b/J_1.java
deleted file mode 100644
index 4c91d47073..0000000000
--- a/test/files/run/t2296b/J_1.java
+++ /dev/null
@@ -1,7 +0,0 @@
-package j;
-
-public class J_1 {
- protected void foo() {
- System.out.println("J.foo()");
- }
-} \ No newline at end of file
diff --git a/test/files/run/t2296b/S_2.scala b/test/files/run/t2296b/S_2.scala
deleted file mode 100644
index 6cdb0cfaba..0000000000
--- a/test/files/run/t2296b/S_2.scala
+++ /dev/null
@@ -1,18 +0,0 @@
-package s {
- import j.J_1
-
- trait S extends J_1 {
- def bar() {
- foo()
- }
- }
-
- class SC extends J_1 with S
-}
-
-object Test {
- def main(args : Array[String]) {
- (new s.SC).bar()
- (new s.S { }).bar()
- }
-}