FIR IDE: quickfix to add override keyword

Also enables more tests that covers previous quickfixes
This commit is contained in:
Tianyu Geng
2021-05-25 10:45:24 -07:00
committed by Ilya Kirillov
parent 1658f4433d
commit 90a0c9bb25
14 changed files with 28 additions and 4 deletions
@@ -0,0 +1,9 @@
package foo.bar
fun test() {
class A {
inner class B
}
fun <!UNRESOLVED_REFERENCE!>A.B<!>.foo() {}
}