blob: f1bc9a8b4d23a139cca3ababd7608e064934981f [file] [log] [blame]
import 'dart:async';
main() async {
try {
try {
await new Future.error('error');
} catch (error) {
print("caught once");
throw 'error';
}
} catch (error) {
print("caught twice");
throw 'error';
}
}