mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-23 15:51:59 +00:00
10 lines
161 B
Plaintext
Vendored
10 lines
161 B
Plaintext
Vendored
package test
|
|
|
|
public open class InnerClass {
|
|
public constructor InnerClass()
|
|
|
|
public open inner class Inner {
|
|
public constructor Inner()
|
|
}
|
|
}
|