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