aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t261.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/run/t261.scala')
-rw-r--r--tests/pending/run/t261.scala11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/pending/run/t261.scala b/tests/pending/run/t261.scala
deleted file mode 100644
index 4e1aa9ff9..000000000
--- a/tests/pending/run/t261.scala
+++ /dev/null
@@ -1,11 +0,0 @@
-trait A { val foo: String = "A" }
-trait B {
- private val foo: String = "B"
- def f = println(foo)
-}
-object Test extends A with B {
- def main(args: Array[String]) = {
- println(foo)
- f
- }
-}