Sign in
chromium
/
external
/
github.com
/
dart-lang
/
async_await
/
8aa5360335341ab5342b28672f42c3273758510c
/
.
/
test
/
async
/
try_no_catch.dart
blob: 7fa00cfa3778b80cc291683dcb22285b1f0530ca [
file
] [
log
] [
blame
]
import
'dart:async'
;
test
()
async
{
try
{
throw
new
Exception
(
"boom!"
);
}
on Exception
{
print
(
'☺'
);
}
}
main
()
{
test
();
}