21 lines
352 B
Kotlin
Vendored
21 lines
352 B
Kotlin
Vendored
package foo
|
|
|
|
// NOTE THIS FILE IS AUTO-GENERATED by the generateTestDataForReservedWords.kt. DO NOT EDIT!
|
|
|
|
enum class Foo {
|
|
BAR;
|
|
fun foo(`continue`: String) {
|
|
assertEquals("123", `continue`)
|
|
testRenamed("continue", { `continue` })
|
|
}
|
|
|
|
fun test() {
|
|
foo("123")
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
Foo.BAR.test()
|
|
|
|
return "OK"
|
|
} |