6 lines
74 B
Kotlin
Vendored
6 lines
74 B
Kotlin
Vendored
val <T> T.foo : T?
|
|
get() = null
|
|
|
|
fun test(): Int? {
|
|
return 1.foo
|
|
} |