12 lines
143 B
Kotlin
Vendored
12 lines
143 B
Kotlin
Vendored
// !CHECK_HIGHLIGHTING
|
|
|
|
actual class Header {
|
|
actual fun foo() = 42
|
|
}
|
|
|
|
actual fun foo(arg: Int) = arg.toString()
|
|
|
|
actual val flag = true
|
|
|
|
|