mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
12 lines
187 B
Kotlin
Vendored
12 lines
187 B
Kotlin
Vendored
// "Make 'Derived' internal" "true"
|
|
// ACTION: Make 'Outer' public
|
|
|
|
import Outer.Base
|
|
|
|
internal class Outer {
|
|
interface Base
|
|
}
|
|
|
|
class Container {
|
|
interface Derived : <caret>Base
|
|
} |