summaryrefslogtreecommitdiff
path: root/test/files/run/t2296b/S_2.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t2296b/S_2.scala')
-rw-r--r--test/files/run/t2296b/S_2.scala18
1 files changed, 0 insertions, 18 deletions
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()
- }
-}