Files
kotlin-fork/compiler/testData/ir/irText/expressions/values.kt
T
2024-02-16 10:19:38 +00:00

13 lines
161 B
Kotlin
Vendored

// FIR_IDENTICAL
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