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