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