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

8 lines
120 B
Plaintext
Vendored

// FIX: Change to val
interface A {
fun foo()
}
class B : A {
override fun foo() {}
}
class C(val b: B) : A by b