4d9b19da82
#KT-18539 Fixed
11 lines
231 B
Plaintext
Vendored
11 lines
231 B
Plaintext
Vendored
private val String?.notExistingVal: Int
|
|
get() {
|
|
TODO("Not yet implemented")
|
|
}
|
|
|
|
// "Create extension property 'String?.notExistingVal'" "true"
|
|
fun foo(n: Int) {}
|
|
|
|
fun context(p: String?) {
|
|
foo(p.notExistingVal)
|
|
} |