Files
kotlin-fork/idea/testData/quickfix/autoImports/dslMarkers.after.kt
T
2017-07-25 16:16:57 +03:00

13 lines
181 B
Kotlin
Vendored

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