Add "Make private and overrides member" quick fix for ACCIDENTAL_OVERRIDE

#KT-18536 Fixed
This commit is contained in:
Toshiaki Kameyama
2019-10-01 18:22:49 +09:00
committed by Dmitry Gridin
parent 30b98aaeb7
commit d72e55d1b7
30 changed files with 282 additions and 0 deletions
@@ -0,0 +1,7 @@
// "Make private and implements 'getName'" "true"
// DISABLE-ERRORS
class A(private val name: String) : JavaInterface {
override fun getName(): String {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
}