mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
7 lines
123 B
Plaintext
Vendored
7 lines
123 B
Plaintext
Vendored
// "Make First private" "true"
|
|
|
|
class Outer {
|
|
private open class Data(val x: Int)
|
|
|
|
private class First : Data(42)
|
|
} |