blob: 18d056e945290adade393fa18e5e68bbde79a86b [file] [log] [blame]
// "class org.jetbrains.kotlin.idea.quickfix.AddModifierFix" "false"
// ACTION: Add 'my =' to argument
open class My {
init {
register(<caret>this)
}
}
class Derived : My()
fun register(my: My) {}