mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 08:31:30 +00:00
21 lines
373 B
Java
Vendored
21 lines
373 B
Java
Vendored
// WithNested
|
|
|
|
class WithNested {
|
|
void myClassFun() {}
|
|
|
|
static class NestedClass {
|
|
void nestedClassFun() {}
|
|
}
|
|
|
|
class InnerClass {
|
|
void innerClassFun() {}
|
|
|
|
class InnerInnerClass {
|
|
void innerInnerClassFun() {}
|
|
}
|
|
}
|
|
|
|
interface NestedInterface {
|
|
void nestedInterfaceFun() {}
|
|
}
|
|
} |