Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createVariable/property/nullableReceiver.kt
T
2018-05-11 16:05:19 +03:00

6 lines
143 B
Kotlin
Vendored

// "Create extension property 'String?.notExistingVal'" "true"
fun foo(n: Int) {}
fun context(p: String?) {
foo(p.<caret>notExistingVal)
}