aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/run/t261.scala
diff options
context:
space:
mode:
authorDmitry Petrashko <dmitry.petrashko@gmail.com>2015-05-22 16:08:06 +0200
committerDmitry Petrashko <dmitry.petrashko@gmail.com>2015-05-22 16:08:06 +0200
commit718bffedfad111a44dcebfcd327d52dbeee30491 (patch)
treeb7d9df46d09c85e72440b7c95332e386ff02dfb5 /tests/pending/run/t261.scala
parent6965b470d433f501203c4e3d77b0919f826691ba (diff)
downloaddotty-718bffedfad111a44dcebfcd327d52dbeee30491.tar.gz
dotty-718bffedfad111a44dcebfcd327d52dbeee30491.tar.bz2
dotty-718bffedfad111a44dcebfcd327d52dbeee30491.zip
Remove tests from pending.
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
- }
-}