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