Files
kotlin-fork/idea/testData/inspectionsLocal/delegationToVarProperty/varParameter2.kt
T

8 lines
124 B
Kotlin
Vendored

// FIX: Remove var
interface A {
fun foo()
}
class B : A {
override fun foo() {}
}
class C(var b: B<caret>) : A by b