Files
kotlin-fork/compiler/testData/diagnostics/tests/j+k/innerNestedClassFromJava.fir.kt
T
2021-11-26 11:26:17 +03:00

33 lines
380 B
Kotlin
Vendored

// FILE: a/M.java
package a;
public class M {
public class Inner {
}
public static class Nested {
}
private class PrInner {
}
private static class PrNested {
}
}
// FILE: b.kt
package b
fun f() {
val c1: a.M.Inner
val c2: a.M.Nested
val c3: <!INVISIBLE_REFERENCE!>a.M.PrInner<!>
val c4: <!INVISIBLE_REFERENCE!>a.M.PrNested<!>
}