Fix false positive 'Introduce import alias' on this/super

This commit is contained in:
Dmitry Gridin
2019-03-19 11:13:04 +07:00
parent 1626bc4751
commit 43be01bbc8
4 changed files with 29 additions and 0 deletions
@@ -0,0 +1,10 @@
// IS_APPLICABLE: false
open class SuperClass {
fun check() {}
}
class Test : SuperClass() {
fun test2() {
<caret>super.check()
}
}
@@ -0,0 +1,7 @@
// IS_APPLICABLE: false
class Test {
fun check() {}
fun test2() {
<caret>this.check()
}
}