blob: 38f247e8c1836e73e9833e7011fe712d529df422 [file] [log] [blame]
// ERROR: Unresolved reference: bar
import java.io.IOException
internal class A {
fun foo() {
try {
bar()
} catch (e: RuntimeException) {
e.printStackTrace() // print stack trace
} catch (e: IOException) {
e.printStackTrace()
}
}
}