02180e8685
^KT-57777 Fixed ^KT-57818 Fixed
15 lines
199 B
Kotlin
Vendored
15 lines
199 B
Kotlin
Vendored
// IGNORE_BACKEND: JS_IR
|
|
// IGNORE_BACKEND: JS_IR_ES6
|
|
|
|
enum class Enum { A }
|
|
object A
|
|
val a = 0
|
|
class Z {
|
|
companion object
|
|
}
|
|
|
|
fun test1() = Enum.A
|
|
fun test2() = A
|
|
fun test3() = a
|
|
fun test4() = Z
|