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
21 lines
325 B
Kotlin
Vendored
21 lines
325 B
Kotlin
Vendored
// FIR_BLOCKED: LC don't support names with $
|
|
// CORRECT_ERROR_TYPES
|
|
|
|
// FILE: $Test.java
|
|
public class $Test {
|
|
public static class $Inner {}
|
|
}
|
|
|
|
// FILE: Test$.java
|
|
public class Test$ {
|
|
public static class Inner$ {}
|
|
}
|
|
|
|
// FILE: test.kt
|
|
|
|
package test
|
|
|
|
fun test(a: `$Test`.`$Inner`) {}
|
|
|
|
fun test(a: `Test$`.`Inner$`) {}
|