mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 08:31:28 +00:00
14 lines
168 B
Kotlin
Vendored
14 lines
168 B
Kotlin
Vendored
// !CHECK_HIGHLIGHTING
|
|
|
|
actual class Header {
|
|
actual fun foo() = 42
|
|
}
|
|
|
|
actual class Incomplete
|
|
|
|
actual fun foo(arg: Int) = arg.toString()
|
|
|
|
actual val flag = true
|
|
|
|
|