Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/multifile/simpleStarImport.kt
T
Ivan Kochurkin 994c2229df [FIR] Report UNSUPPORTED_FEATURE for expect/actual members if MPP is disabled
Always enable MultiPlatformProjects for K2MetadataCompilerArguments

 ^KT-57243 Fixed
2023-05-25 09:46:56 +00:00

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()
}