11 lines
143 B
Kotlin
Vendored
11 lines
143 B
Kotlin
Vendored
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 |