mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 15:53:55 +00:00
27 lines
518 B
Plaintext
Vendored
27 lines
518 B
Plaintext
Vendored
class WithNested {
|
|
void myClassFun()
|
|
|
|
static class NestedClass {
|
|
void nestedClassFun()
|
|
|
|
void <init>()
|
|
}
|
|
|
|
class InnerClass {
|
|
void innerClassFun()
|
|
|
|
class InnerInnerClass {
|
|
void innerInnerClassFun()
|
|
|
|
void <init>(WithNested.InnerClass $instance)
|
|
}
|
|
|
|
void <init>(WithNested $instance)
|
|
}
|
|
|
|
static abstract interface NestedInterface {
|
|
public abstract void nestedInterfaceFun()
|
|
}
|
|
|
|
void <init>()
|
|
} |