Transform Enum.values to property

This commit is contained in:
Denis Zharkov
2015-10-16 14:20:19 +03:00
parent d985f56b8d
commit d8ede6d03e
17 changed files with 140 additions and 29 deletions
@@ -7,5 +7,5 @@ public enum A {
// FILE: test.kt
fun main() {
checkSubtype<Array<A>>(A.values())
checkSubtype<Array<A>>(A.values)
}