903976d9af
Related to #KT-25039
9 lines
150 B
Groff
Vendored
9 lines
150 B
Groff
Vendored
enum class Enum(x: String) {
|
|
A("a"),
|
|
B("b");
|
|
|
|
val becameNullable: Any? = x
|
|
val unchanged: Any = x
|
|
}
|
|
|
|
fun Any.string() = this as String |