3612c2983e
This can fix a lot of issues related to inexact generation, in particular #KT-27093 Fixed
10 lines
240 B
Plaintext
Vendored
10 lines
240 B
Plaintext
Vendored
// MyEnum: to be implemented
|
|
actual enum class MyEnum {
|
|
FIRST,
|
|
SECOND,
|
|
LAST;
|
|
|
|
actual val num: Int
|
|
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
|
|
|
|
} |