// 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. }