Files
kotlin-fork/js/js.translator/testData/reservedWords/cases/localCatchIf.kt
T
2015-12-09 17:10:30 +03:00

17 lines
269 B
Kotlin
Vendored

package foo
// NOTE THIS FILE IS AUTO-GENERATED by the generateTestDataForReservedWords.kt. DO NOT EDIT!
fun box(): String {
try {
throw Exception()
}
catch(`if`: Exception) {
testRenamed("if", { `if` })
}
return "OK"
}