Files
kotlin-fork/js/js.translator/testData/reservedWords/cases/localFunParamPublic.kt
T

14 lines
263 B
Kotlin
Vendored

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