aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t2669.scala
diff options
context:
space:
mode:
authorDmitry Petrashko <dark@d-d.me>2015-06-07 20:13:14 +0200
committerDmitry Petrashko <dark@d-d.me>2015-06-07 20:13:14 +0200
commit1962ada58fcd2333a2e40179ab0ac6efb6167ed2 (patch)
treed39424ead5e2a6bc9f31d8df50ef002e2727eab9 /tests/pos/t2669.scala
parent6ca52b0f23f0c3425d054d0918a149e0e7afb765 (diff)
parent4c659a31e658a661af44d07bdc003d0ecbf86c3b (diff)
downloaddotty-1962ada58fcd2333a2e40179ab0ac6efb6167ed2.tar.gz
dotty-1962ada58fcd2333a2e40179ab0ac6efb6167ed2.tar.bz2
dotty-1962ada58fcd2333a2e40179ab0ac6efb6167ed2.zip
Merge pull request #633 from dotty-staging/fix/refs-to-inner-objects
Fix/refs to inner objects
Diffstat (limited to 'tests/pos/t2669.scala')
-rw-r--r--tests/pos/t2669.scala29
1 files changed, 29 insertions, 0 deletions
diff --git a/tests/pos/t2669.scala b/tests/pos/t2669.scala
new file mode 100644
index 000000000..609e88786
--- /dev/null
+++ b/tests/pos/t2669.scala
@@ -0,0 +1,29 @@
+// #2629, #2639, #2669
+// dies in classfile parser while parsing java.util.Vector(requested by bakend)
+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
+}