238340a143
(cherry picked from commit 1677984)
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 |