Files
kotlin-fork/compiler/testData/diagnostics/tests/subtyping/extensionOnLocalClasses.fir.kt
T
Tianyu Geng 90a0c9bb25 FIR IDE: quickfix to add override keyword
Also enables more tests that covers previous quickfixes
2021-06-10 19:05:33 +02:00

10 lines
123 B
Kotlin
Vendored

package foo.bar
fun test() {
class A {
inner class B
}
fun <!UNRESOLVED_REFERENCE!>A.B<!>.foo() {}
}