bcfafc601e
This change allows to revert adding `WITH_STDLIB` directive to tests which happened at `a9343aeb`. Co-authored-by: Alexander Udalov <Alexander.Udalov@jetbrains.com>
32 lines
639 B
Plaintext
Vendored
32 lines
639 B
Plaintext
Vendored
val n: Any?
|
|
field = null
|
|
get
|
|
|
|
open enum class En : Enum<En> {
|
|
private constructor(x: String?) /* primary */ {
|
|
super/*Enum*/<En>()
|
|
/* <init>() */
|
|
|
|
}
|
|
|
|
val x: String?
|
|
field = x
|
|
get
|
|
|
|
ENTRY = En(x = { // BLOCK
|
|
val tmp0_safe_receiver: Any? = <get-n>()
|
|
when {
|
|
EQEQ(arg0 = tmp0_safe_receiver, arg1 = null) -> null
|
|
else -> tmp0_safe_receiver.toString()
|
|
}
|
|
})
|
|
|
|
fun values(): Array<En> /* Synthetic body for ENUM_VALUES */
|
|
|
|
fun valueOf(value: String): En /* Synthetic body for ENUM_VALUEOF */
|
|
|
|
val entries: EnumEntries<En>
|
|
get(): EnumEntries<En> /* Synthetic body for ENUM_ENTRIES */
|
|
|
|
}
|