ebb9659e03
Currently JVM IR is not supported in kapt, so almost all tests are failing, and thus are muted with IGNORE_BACKEND. #KT-49682
18 lines
342 B
Kotlin
Vendored
18 lines
342 B
Kotlin
Vendored
// IGNORE_BACKEND: JVM_IR
|
|
// CORRECT_ERROR_TYPES
|
|
|
|
// FILE: te/st/a/JavaClass
|
|
package te.st.a;
|
|
|
|
public class JavaClass {}
|
|
|
|
// FILE: test.kt
|
|
@file:Suppress("UNRESOLVED_REFERENCE")
|
|
package te.st.a
|
|
|
|
import te.st.a.`$Test`.Inner as MyInner
|
|
import te.st.a.`Test$`.Inner as MyInner2
|
|
import te.st.a.`Test$`.`Inner$` as MyInner3
|
|
|
|
fun a(a: MyInner) {}
|