Files
kotlin-fork/compiler/testData/fir/rawBuilder/declarations/expectActual.kt
T
2018-11-02 19:44:54 +03:00

11 lines
134 B
Kotlin
Vendored

expect class MyClass
expect fun foo(): String
expect val x: Int
actual class MyClass
actual fun foo() = "Hello"
actual val x = 42