blob: 9a1283e56c94df778212c2da489e880d6e27bb83 [file]
// WITH_STDLIB
import kotlin.test.*
enum class A(one: Int, val two: Int = one) {
FOO(42)
}
fun box(): String {
assertEquals(42, (A.FOO.two))
return "OK"
}