aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t2133.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/t2133.scala')
-rw-r--r--tests/untried/pos/t2133.scala18
1 files changed, 0 insertions, 18 deletions
diff --git a/tests/untried/pos/t2133.scala b/tests/untried/pos/t2133.scala
deleted file mode 100644
index c74d0a4bb..000000000
--- a/tests/untried/pos/t2133.scala
+++ /dev/null
@@ -1,18 +0,0 @@
-trait Foo {
- object bar {
- private[this] def fn() = 5
- }
-}
-
-trait Foo2 {
- object bip {
- def fn() = 10
- }
-}
-
-class Bob extends AnyRef with Foo with Foo2 {
- import bip._
- import bar._
-
- def go() = fn()
-}