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