blob: bf137ee7d70869c7677fa6c83910ab6fcb62b5c0 [file] [log] [blame]
package demo
internal class Collection<E>(e: E) {
init {
println(e)
}
}
internal class Test {
fun main() {
val raw1: Collection<*> = Collection<Any?>(1)
val raw2: Collection<*> = Collection(1)
val raw3: Collection<*> = Collection("1")
}
}