Files
sdk/pkg/dev_compiler/test/codegen/try_catch.dart
T

10 lines
107 B
Dart

main() {
try {
throw "hi there";
} on String catch (e, t) {
} catch (e, t) {
rethrow;
}
}