mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
14 lines
290 B
Plaintext
14 lines
290 B
Plaintext
package test
|
|
|
|
internal final class Outer {
|
|
/*primary*/ public constructor Outer()
|
|
|
|
internal open class Nested1 {
|
|
/*primary*/ public constructor Nested1()
|
|
}
|
|
|
|
internal final class Nested2 : test.Outer.Nested1 {
|
|
/*primary*/ public constructor Nested2()
|
|
}
|
|
}
|