mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
13 lines
461 B
Plaintext
Vendored
13 lines
461 B
Plaintext
Vendored
// Abstract: to be implemented
|
|
actual abstract class Abstract {
|
|
|
|
actual abstract fun String.bar(y: Double): Boolean
|
|
|
|
actual abstract var status: Int
|
|
actual fun foo(param: String): Int {
|
|
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
|
}
|
|
|
|
actual val isGood: Boolean
|
|
get() = TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
|
} |