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
10 lines
203 B
Kotlin
Vendored
10 lines
203 B
Kotlin
Vendored
// EXPECTED_ERROR_K2: (kotlin:7:1) cannot find symbol
|
|
|
|
package test
|
|
|
|
internal annotation class Anno
|
|
|
|
@Anno
|
|
@Suppress("UNRESOLVED_REFERENCE")
|
|
internal class ClassWithParent: Foo(), Bar, Baz, CharSequence
|