8c0cf7d0bc
^KT-59887 Fixed Review: https://jetbrains.team/p/kt/reviews/13244
14 lines
172 B
Kotlin
Vendored
14 lines
172 B
Kotlin
Vendored
// LANGUAGE: +MultiPlatformProjects
|
|
fun main() {
|
|
println("Hello, Kotlin/Native!")
|
|
}
|
|
|
|
expect fun f()
|
|
|
|
fun test() {
|
|
}
|
|
|
|
actual fun f() { <expr>println("Hello")</expr> }
|
|
|
|
|