14 lines
275 B
Kotlin
14 lines
275 B
Kotlin
package foo
|
|
|
|
// NOTE THIS FILE IS AUTO-GENERATED by the generateTestDataForReservedWords.kt. DO NOT EDIT!
|
|
|
|
fun box(): String {
|
|
fun foo(protected: String) {
|
|
assertEquals("123", protected)
|
|
testRenamed("protected", { protected })
|
|
}
|
|
|
|
foo("123")
|
|
|
|
return "OK"
|
|
} |