Kapt+JVM_IR: add stub converter test for KT-57388

This commit is contained in:
Alexander Udalov
2023-03-21 22:12:58 +01:00
parent a525983e38
commit 17e4ed8ffc
5 changed files with 112 additions and 0 deletions
@@ -0,0 +1,12 @@
// CORRECT_ERROR_TYPES
// NO_VALIDATION
open class C
@Suppress("UNRESOLVED_REFERENCE")
class B : NonExisting {
@Suppress("UNRESOLVED_REFERENCE_WRONG_RECEIVER")
val a: String by flaf()
}
fun C.flaf() = "OK"