summaryrefslogtreecommitdiff
path: root/test/files/pos/t261-ba.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/t261-ba.scala')
-rw-r--r--test/files/pos/t261-ba.scala9
1 files changed, 0 insertions, 9 deletions
diff --git a/test/files/pos/t261-ba.scala b/test/files/pos/t261-ba.scala
deleted file mode 100644
index 6c9c5b10b7..0000000000
--- a/test/files/pos/t261-ba.scala
+++ /dev/null
@@ -1,9 +0,0 @@
-trait B {
- private val foo: String = "B"
- def f = println(foo)
-}
-trait A { val foo: String = "A" }
-object Test extends App with B with A {
- println(foo) // prints "A", as expected
- f // prints "B", as expected
-}