KT-6632 "Convert to extension" intention should not be available on methods that override or implement a superclass method

#KT-6632 Fixed
This commit is contained in:
Valentin Kipyatkov
2015-05-11 20:19:44 +03:00
parent a23c6a2cdc
commit ac9d75b45e
3 changed files with 16 additions and 0 deletions
@@ -0,0 +1,9 @@
// IS_APPLICABLE: false
trait I {
fun foo()
}
class C : I {
override fun <caret>foo() {
}
}