Files
kotlin-fork/idea/testData/refactoring/introduceVariable/UnresolvedOccurrences.kt
T

7 lines
129 B
Kotlin
Vendored

fun a() {
val x = <selection>Foo()</selection>
println(Foo())
println(Foo)
println(Foo(1))
println(1.Foo())
}