98ce0d529c
#KT-3930 Fixed
8 lines
134 B
Kotlin
Vendored
8 lines
134 B
Kotlin
Vendored
class A : Test<String>() {
|
|
fun foo(): String? = value
|
|
}
|
|
|
|
fun box(): String {
|
|
return if (A().foo() == null) "OK" else "Fail"
|
|
}
|