mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
15 lines
270 B
Plaintext
Vendored
15 lines
270 B
Plaintext
Vendored
// Interface: to be implemented
|
|
actual interface Interface {
|
|
actual fun foo(param: String): Int
|
|
|
|
actual fun String.bar(y: Double): Boolean
|
|
|
|
actual val isGood: Boolean
|
|
|
|
actual var status: Int
|
|
|
|
actual class Nested {
|
|
actual fun bar() {}
|
|
}
|
|
|
|
} |