aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t2669.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pos/t2669.scala')
-rw-r--r--tests/pos/t2669.scala28
1 files changed, 0 insertions, 28 deletions
diff --git a/tests/pos/t2669.scala b/tests/pos/t2669.scala
deleted file mode 100644
index 72e931178..000000000
--- a/tests/pos/t2669.scala
+++ /dev/null
@@ -1,28 +0,0 @@
-// #2629, #2639, #2669
-object Test2669 {
-
- def test[T](l: java.util.ArrayList[_ <: T]) = 1
- test(new java.util.ArrayList[String]())
-
-}
-
-import java.util.ArrayList
-
-object Test2629 {
- def main(args: Array[String]): Unit = {
- val l = new ArrayList[String](1)
- val m = new ArrayList(l)
-
- println(l.size)
- println(m.size)
- }
-}
-
-
-import java.util.Vector
-
-// scalac cannot detect lack of type params, but then throws AssertionError later:
-class TVector2639 {
- val b = new Vector // this line passed without error detected
- val a = new Vector(1) // this line caused throwing AssertionError when scalac
-}