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