mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
12 lines
201 B
Kotlin
Vendored
12 lines
201 B
Kotlin
Vendored
// KOTLIN_CONFIGURATION_FLAGS: +JVM.DISABLE_PARAM_ASSERTIONS
|
|
|
|
import java.util.HashMap
|
|
|
|
class A<T: Any> {
|
|
fun main() {
|
|
HashMap<String, T>()[""]
|
|
}
|
|
}
|
|
|
|
// 0 kotlin/jvm/internal/Intrinsics
|