KT-12152: quick fix "make final" for member / containing class

This commit is contained in:
Mikhail Glukhikh
2016-05-30 18:19:26 +03:00
parent a22e7d3bcf
commit de3fbe38f1
17 changed files with 258 additions and 10 deletions
+10
View File
@@ -0,0 +1,10 @@
// "Make 'My' final" "false"
// ACTION: Add 'my =' to argument
abstract class My {
init {
register(<caret>this)
}
}
fun register(my: My) {}