Files
kotlin-fork/js/js.translator/testData/reservedWords/cases/enumFunParamTrue.kt
T
2015-12-10 21:26:41 +03:00

21 lines
336 B
Kotlin
Vendored

package foo
// NOTE THIS FILE IS AUTO-GENERATED by the generateTestDataForReservedWords.kt. DO NOT EDIT!
enum class Foo {
BAR;
fun foo(`true`: String) {
assertEquals("123", `true`)
testRenamed("true", { `true` })
}
fun test() {
foo("123")
}
}
fun box(): String {
Foo.BAR.test()
return "OK"
}