994c2229df
Always enable MultiPlatformProjects for K2MetadataCompilerArguments ^KT-57243 Fixed
24 lines
255 B
Kotlin
Vendored
24 lines
255 B
Kotlin
Vendored
// LANGUAGE: +MultiPlatformProjects
|
|
|
|
// FILE: B.kt
|
|
|
|
package b.d
|
|
|
|
expect interface Other
|
|
|
|
expect class Another
|
|
|
|
fun baz() {}
|
|
|
|
// FILE: A.kt
|
|
|
|
package a.d
|
|
|
|
import b.d.*
|
|
|
|
<!NON_MEMBER_FUNCTION_NO_BODY!>fun foo(arg: Other): Another<!>
|
|
|
|
fun bar() {
|
|
baz()
|
|
}
|