Files
kotlin-fork/js/js.translator/testData/reservedWords/cases/localCatchInterface.kt
T
2015-09-22 15:00:38 +02:00

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