aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t2939.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/t2939.scala')
-rw-r--r--tests/untried/pos/t2939.scala13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/untried/pos/t2939.scala b/tests/untried/pos/t2939.scala
deleted file mode 100644
index 57dd52024..000000000
--- a/tests/untried/pos/t2939.scala
+++ /dev/null
@@ -1,13 +0,0 @@
-import collection._
-
-object Proxies {
- class C1 extends MapProxy[Int,Int] { def self = Map[Int,Int]() }
- class C2 extends mutable.MapProxy[Int,Int] { def self = mutable.Map[Int,Int]() }
- class C3 extends immutable.MapProxy[Int,Int] { def self = immutable.Map[Int,Int]() }
-
- class C4 extends SetProxy[Int] { def self = Set[Int]() }
- class C5 extends mutable.SetProxy[Int] { def self = mutable.Set[Int]() }
- class C6 extends immutable.SetProxy[Int] { def self = immutable.Set[Int]() }
-
- class C7 extends SeqProxy[Int] { def self = Seq[Int]() }
-}