2002542ad2
This commit includes the basic Java stubs generation infrastructure and the corresponding tests. The main entry point is called Kapt4StubGenerator. Calls to it from production code will be added in a separate commit. #KT-51982
18 lines
367 B
Kotlin
Vendored
18 lines
367 B
Kotlin
Vendored
// FIR_BLOCKED: LC don't support names with $
|
|
// CORRECT_ERROR_TYPES
|
|
|
|
// FILE: te/st/a/JavaClass.java
|
|
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) {}
|