23491afde2
#KT-11483 Fixed
10 lines
133 B
Kotlin
Vendored
10 lines
133 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
package foo
|
|
|
|
class InsertThis {
|
|
val v1 = 1
|
|
fun <caret>f() {
|
|
println(v1)
|
|
}
|
|
fun use() { f() }
|
|
} |