17 lines
292 B
Kotlin
17 lines
292 B
Kotlin
package foo
|
|
|
|
// NOTE THIS FILE IS AUTO-GENERATED by the generateTestDataForReservedWords.kt. DO NOT EDIT!
|
|
|
|
class TestClass {
|
|
val `continue`: Int = 0
|
|
|
|
fun test() {
|
|
testNotRenamed("continue", { `continue` })
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
TestClass().test()
|
|
|
|
return "OK"
|
|
} |