[TEST] Add regression test for KT-59805 ACTUAL_MISSING for constructor

This commit is contained in:
Nikita Bobko
2023-12-06 12:50:56 +01:00
committed by Space Team
parent 5ccae2801d
commit 0d67ae7b23
6 changed files with 52 additions and 0 deletions
@@ -0,0 +1,22 @@
// FIR_IDENTICAL
// MODULE: m1-common
// FILE: common.kt
expect class Foo()
expect class Foo2()
expect class Bar
expect class Bar2
// MODULE: m2-jvm()()(m1-common)
// FILE: jvm.kt
actual class Foo<!ACTUAL_MISSING!>()<!>
actual class Foo2 {
<!ACTUAL_MISSING!>constructor()<!>
}
actual class Bar()
actual class Bar2 {
constructor()
}