mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 00:21:28 +00:00
8 lines
124 B
Kotlin
Vendored
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
|