[Analysis API] add diagnostic tests for inner Java class usage
^KT-62892
This commit is contained in:
committed by
Space Team
parent
6c7d1babf0
commit
7efbcad121
Vendored
+16
@@ -0,0 +1,16 @@
|
||||
// FILE: issue/pack/RowIcon.java
|
||||
package issue.pack;
|
||||
|
||||
public class RowIcon {
|
||||
public static class RClass {}
|
||||
}
|
||||
|
||||
// FILE: usage.kt
|
||||
package usage
|
||||
|
||||
fun testJavaNestedClass(alignment: issue.pack.RowIcon.RClass) {
|
||||
}
|
||||
|
||||
fun checkIt() {
|
||||
testJavaNestedClass(issue.pack.RowIcon.RClass())
|
||||
}
|
||||
Reference in New Issue
Block a user