[K1] Correctly handle case when expect annotation is unresolved
Before change NPE was thrown. Review: KT-MR-12250 ^KT-62026
This commit is contained in:
committed by
Space Team
parent
5cae87b263
commit
04c1bf749c
Vendored
+9
@@ -0,0 +1,9 @@
|
||||
// DIAGNOSTICS: -UNRESOLVED_REFERENCE
|
||||
// MODULE: m1-common
|
||||
// FILE: common.kt
|
||||
@NonExistingClass
|
||||
expect fun foo()
|
||||
|
||||
// MODULE: m1-jvm()()(m1-common)
|
||||
// FILE: jvm.kt
|
||||
actual fun <!ACTUAL_ANNOTATIONS_NOT_MATCH_EXPECT!>foo<!>() {}
|
||||
Vendored
+9
@@ -0,0 +1,9 @@
|
||||
// DIAGNOSTICS: -UNRESOLVED_REFERENCE
|
||||
// MODULE: m1-common
|
||||
// FILE: common.kt
|
||||
@NonExistingClass
|
||||
expect fun foo()
|
||||
|
||||
// MODULE: m1-jvm()()(m1-common)
|
||||
// FILE: jvm.kt
|
||||
actual fun foo() {}
|
||||
Reference in New Issue
Block a user