Files
kotlin-fork/idea/testData/quickfix/autoImports/dslMarkers.after.kt
T
2021-05-12 16:28:30 +00:00

14 lines
198 B
Kotlin
Vendored

import BExtSpace.aaa
// "Import" "true"
// WITH_RUNTIME
// ERROR: Unresolved reference: aaa
fun test() {
AAA().apply {
sub {
aaa<caret>()
}
}
}
/* IGNORE_FIR */