Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ebcc2cc3b207156c1c0e90e5107aa356b8fa8d72
/
.
/
compiler
/
testData
/
codegen
/
box
/
ir
/
enumClass2.kt
blob: 122d9bb9477ade7faaf18af2feb1e388210151a1 [
file
]
// WITH_STDLIB
import
kotlin
.
test
.
assertEquals
enum
class
TestEnumClass
(
val x
:
Int
)
{
ZERO
// {
// init {
// }
// }
;
constructor
():
this
(
0
)
}
fun box
():
String
{
assertEquals
(
TestEnumClass
.
ZERO
.
x
,
0
)
return
"OK"
}