Files
Pavel Mikhailovskii 2002542ad2 Stub generation infrastructure (except for metadata generation) for KAPT+K2
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
2023-08-09 01:17:21 +00:00

13 lines
206 B
Kotlin
Vendored

// FIR_BLOCKED: KT-60490
// CORRECT_ERROR_TYPES
@Suppress("UNRESOLVED_REFERENCE")
interface A {
fun inject(b: B)
val x: String
companion object : B()
abstract class B : A by Unresolved
}