|
Scala example source code file (t2669.scala)
The Scala t2669.scala source code// #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 } Other Scala examples (source code examples)Here is a short list of links related to this Scala t2669.scala source code file: |
... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.