a1a2adf523
#KT-3029 Fixed
12 lines
153 B
Kotlin
Vendored
12 lines
153 B
Kotlin
Vendored
interface Foo {
|
|
protected class Bar {
|
|
fun box() = "OK"
|
|
}
|
|
}
|
|
|
|
class Baz : Foo {
|
|
fun box() = Foo.Bar().box()
|
|
}
|
|
|
|
fun box() = Baz().box()
|