Modify test data to reflect changes with IntrinsicConstEvaluation

This commit is contained in:
Ivan Kylchik
2023-03-16 11:22:53 +01:00
committed by Space Team
parent b28d9a1b48
commit 8eeb7e2631
41 changed files with 617 additions and 160 deletions
@@ -0,0 +1,10 @@
// !LANGUAGE: +IntrinsicConstEvaluation
enum class EnumClass {
OK, VALUE, anotherValue, WITH_UNDERSCORE
}
const val name1 = EnumClass.OK.name
const val name2 = EnumClass.VALUE.name
const val name3 = EnumClass.anotherValue.name
const val name4 = EnumClass.WITH_UNDERSCORE.name