Files
kotlin/compiler/testData/diagnostics/tests/sourceCompatibility/noMultiplatformProjects.fir.kt

8 lines
124 B
Kotlin
Vendored

expect fun foo1()
expect val bar1 = 42
expect class Baz1
actual fun foo2() = 42
actual val bar2: Int
actual interface Baz2