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