Files
kotlin-fork/idea/testData/quickfix/leakingThis/inAbstract.kt
T

10 lines
157 B
Kotlin
Vendored

// "Make 'My' final" "false"
// ACTION: Add 'my =' to argument
abstract class My {
init {
register(<caret>this)
}
}
fun register(my: My) {}