3612c2983e
This can fix a lot of issues related to inexact generation, in particular #KT-27093 Fixed
13 lines
469 B
Plaintext
Vendored
13 lines
469 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 initializer of created properties use File | Settings | File Templates.
|
|
} |