mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
9 lines
157 B
Kotlin
Vendored
9 lines
157 B
Kotlin
Vendored
// "Make First private" "true"
|
|
|
|
class Other {
|
|
internal open class Data(val x: Int)
|
|
}
|
|
|
|
class Another {
|
|
protected class First : Other.<caret>Data(42)
|
|
} |