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

9 lines
123 B
Kotlin
Vendored

// PROBLEM: none
interface A {
fun foo()
}
class B : A {
override fun foo() {
}
}
class C(<caret>b: B) : A by b