8 lines
252 B
Kotlin
Vendored
8 lines
252 B
Kotlin
Vendored
// ERROR: Type inference failed: Not enough information to infer parameter E in constructor ArrayList<E : kotlin.Any!>() Please specify it explicitly.
|
|
package test
|
|
|
|
internal class User {
|
|
fun main() {
|
|
val list = java.util.ArrayList()
|
|
}
|
|
} |