13 lines
218 B
Kotlin
13 lines
218 B
Kotlin
package foo
|
|
|
|
// NOTE THIS FILE IS AUTO-GENERATED by the generateTestDataForReservedWords.kt. DO NOT EDIT!
|
|
|
|
enum class Foo {
|
|
const
|
|
}
|
|
|
|
fun box(): String {
|
|
testNotRenamed("const", { Foo.const })
|
|
|
|
return "OK"
|
|
} |