mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-04 00:21:30 +00:00
16 lines
380 B
Plaintext
16 lines
380 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(): jet.Unit
|
|
}
|
|
|
|
public open class Nested : java.lang.Object {
|
|
public constructor Nested()
|
|
public open fun bar(): jet.Unit
|
|
}
|
|
}
|