mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
10 lines
185 B
Plaintext
10 lines
185 B
Plaintext
package test
|
|
|
|
public open class InnerClass {
|
|
/*primary*/ public constructor InnerClass()
|
|
|
|
public open inner class Inner {
|
|
/*primary*/ public constructor Inner()
|
|
}
|
|
}
|