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