13 lines
260 B
Kotlin
Vendored
13 lines
260 B
Kotlin
Vendored
// "class org.jetbrains.kotlin.idea.quickfix.ImportFix" "false"
|
|
|
|
// KT-3165 Weird stack overflow in IDE
|
|
// ERROR: Unresolved reference: Bar
|
|
// ERROR: Unresolved reference: SomeImpossibleName
|
|
|
|
import Foo.Bar
|
|
|
|
class Foo
|
|
|
|
fun f() {
|
|
<caret>SomeImpossibleName
|
|
} |