mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
10 lines
189 B
Kotlin
Vendored
10 lines
189 B
Kotlin
Vendored
// "Make 'First' private" "true"
|
|
// ACTION: Make 'Data' public
|
|
|
|
class Other {
|
|
internal open class Data(val x: Int)
|
|
}
|
|
|
|
class Another {
|
|
protected class First : Other.<caret>Data(42)
|
|
} |