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

17 lines
271 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(void: Exception) {
testRenamed("void", { void })
}
return "OK"
}