blob: 664194c70acc462babd5921e2743820d94aa7bcc [file]
/*
* Copy of JVM-backend test
* Found at: compiler/testData/codegen/boxInline/simple/simpleEnum.1.kt
*/
// FILE: lib.kt
package foo
enum class MyEnum {
K;
//TODO: KT-4693
inline fun <T> doSmth(a: T) : String {
return a.toString() + K.name
}
}
// FILE: main.kt
package foo
// CHECK_BREAKS_COUNT: function=test1 count=0
// CHECK_LABELS_COUNT: function=test1 name=$l$block count=0
fun test1(): String {
return MyEnum.K.doSmth("O")
}
fun box(): String {
val result = test1()
if (result != "OK") return "fail1: ${result}"
return "OK"
}