Files
kotlin-fork/idea/testData/intentions/convertObjectLiteralToClass/inFunction.kt
T

11 lines
190 B
Kotlin
Vendored

class Test {
var field = 1
fun foo() { // TARGET_BLOCK:
<caret>object : Runnable {
override fun run() {
field = 2
}
}
}
}