mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-01 08:31:29 +00:00
10 lines
159 B
Plaintext
10 lines
159 B
Plaintext
package test
|
|
|
|
public open class NestedClass {
|
|
public constructor NestedClass()
|
|
|
|
public open class Nested {
|
|
public constructor Nested()
|
|
}
|
|
}
|