aaa873f227
#KT-11483 Fixed
9 lines
128 B
Kotlin
Vendored
9 lines
128 B
Kotlin
Vendored
fun println(a: Any) {}
|
|
|
|
class InsertThis {
|
|
val v1 = 1
|
|
fun <caret>f() {
|
|
println(v1)
|
|
}
|
|
fun use() { f() }
|
|
} |