18 lines
290 B
Kotlin
Vendored
18 lines
290 B
Kotlin
Vendored
package foo
|
|
|
|
// NOTE THIS FILE IS AUTO-GENERATED by the generateTestDataForReservedWords.kt. DO NOT EDIT!
|
|
|
|
enum class Foo {
|
|
BAR;
|
|
val t: Int = 0
|
|
|
|
fun test() {
|
|
testRenamed("if", { `if`@ while (false) {} })
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
Foo.BAR.test()
|
|
|
|
return "OK"
|
|
} |