37f923a98f
Because since 1.6 they become normal denotable types ^KT-26245 Fixed
15 lines
388 B
Kotlin
Vendored
15 lines
388 B
Kotlin
Vendored
// !LANGUAGE: +DefinitelyNotNullTypeParameters
|
|
|
|
fun <T> foo(x: T, y: T!!) = x!!
|
|
|
|
fun main() {
|
|
foo<String>("", "").length
|
|
foo<String>("", <!NULL_FOR_NONNULL_TYPE!>null<!>).length
|
|
foo<String?>(null, "").length
|
|
foo<String?>(null, <!NULL_FOR_NONNULL_TYPE!>null<!>).length
|
|
|
|
foo("", "").length
|
|
foo("", <!NULL_FOR_NONNULL_TYPE!>null<!>).length
|
|
foo(null, "").length
|
|
}
|