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

8 lines
127 B
Kotlin
Vendored

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