mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 15:53:55 +00:00
25 lines
446 B
Kotlin
Vendored
25 lines
446 B
Kotlin
Vendored
// FQNAME: WithNested
|
|
|
|
// FILE: WithNested.java
|
|
class WithNested {
|
|
void myClassFun() {}
|
|
|
|
static class NestedClass {
|
|
void nestedClassFun() {}
|
|
}
|
|
|
|
class InnerClass {
|
|
void innerClassFun() {}
|
|
|
|
class InnerInnerClass {
|
|
void innerInnerClassFun() {}
|
|
}
|
|
}
|
|
|
|
interface NestedInterface {
|
|
void nestedInterfaceFun() {}
|
|
}
|
|
}
|
|
|
|
// FILE: Anno.kt
|
|
annotation class Anno |