b96626fd4c
Fix object & enum references.
10 lines
222 B
Kotlin
Vendored
10 lines
222 B
Kotlin
Vendored
object A
|
|
|
|
fun test(x: Any?) =
|
|
when (x) {
|
|
null -> "null"
|
|
A -> "A"
|
|
is String -> "String"
|
|
in setOf<Nothing>() -> "nothingness?"
|
|
else -> "something"
|
|
} |