mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 08:31:31 +00:00
13 lines
180 B
Kotlin
Vendored
13 lines
180 B
Kotlin
Vendored
// !DIAGNOSTICS_NUMBER: 1
|
|
// !DIAGNOSTICS: CANNOT_INFER_VISIBILITY
|
|
|
|
interface T {
|
|
internal val foo: String
|
|
}
|
|
|
|
interface U {
|
|
protected val foo: String
|
|
}
|
|
|
|
interface V : T, U
|