Files
kotlin-fork/compiler/testData/diagnostics/tests/override/kt4785delegation.kt
T
2015-05-12 19:43:17 +02:00

10 lines
137 B
Kotlin
Vendored

interface A {
internal fun foo()
}
interface B {
protected fun foo()
}
class <!CANNOT_INFER_VISIBILITY!>E(a: A)<!> : A by a, B