Sign in
mojo
/
mojo-tools
/
2b9bfa7f95a3a0b6f10edd3cac33ae40587b7bbc
/
.
/
third_party
/
dart-pkg
/
unittest
/
test.dart
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'
;
}
}