Files
kotlin-fork/plugins/kapt3/kapt3-compiler/testData/converter/superConstructorCall.kt
T
Alexander Udalov 287e0909cc Kapt+JVM_IR: do not generate super constructor call
#KT-57699 Fixed
 #KT-57939 Fixed
2023-04-17 10:40:15 +00:00

10 lines
132 B
Kotlin
Vendored

// CORRECT_ERROR_TYPES
@file:Suppress("UNRESOLVED_REFERENCE")
package test
abstract class A(val s: String)
class B : A(C.foo())