Files
kotlin-fork/compiler/testData/ir/irText/expressions/values.kt
T
Roman Artemev e57d34dd9e Make fix test:
- [JS IR] Unmute fixed tests
 - [IrText] Update testdata
 - [WASM] Temporary turn wasm test off
 - [FirText] Temporary turn fit text tests off
 - [JVM IR] Turn off klib jvm test
 - [IR] Add new test
2020-02-14 18:22:17 +03:00

12 lines
170 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: ANY
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