mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-04 15:51:54 +00:00
16 lines
374 B
Plaintext
16 lines
374 B
Plaintext
package test
|
|
|
|
public open class InnerClass : java.lang.Object {
|
|
public constructor InnerClass()
|
|
|
|
public open inner class Inner : java.lang.Object {
|
|
public constructor Inner()
|
|
public open fun foo() : Unit
|
|
}
|
|
|
|
public open class Nested : java.lang.Object {
|
|
public constructor Nested()
|
|
public open fun bar() : Unit
|
|
}
|
|
}
|