mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 00:21:29 +00:00
19 lines
359 B
Plaintext
Vendored
19 lines
359 B
Plaintext
Vendored
class WithNested {
|
|
void myClassFun()
|
|
|
|
static class NestedClass {
|
|
void nestedClassFun()
|
|
}
|
|
|
|
class InnerClass {
|
|
void innerClassFun()
|
|
|
|
class InnerInnerClass {
|
|
void innerInnerClassFun()
|
|
}
|
|
}
|
|
|
|
static abstract interface NestedInterface {
|
|
public abstract void nestedInterfaceFun()
|
|
}
|
|
} |