Files
kotlin-fork/compiler/testData/diagnostics/tests/override/CannotInferVisibilityForPropertySetter.kt
T

14 lines
308 B
Kotlin
Vendored

interface T {
public var foo: Short
<!DEPRECATED_MODIFIER_CONTAINING_DECLARATION!>internal<!> set
}
interface U {
public var foo: Short
<!DEPRECATED_MODIFIER_CONTAINING_DECLARATION!>protected<!> set
}
interface V : T, U {
<!CANNOT_INFER_VISIBILITY!>override var foo: Short<!>
}