blob: f2357edd24d112b660b3bf6814b2bb571995427f [file] [log] [blame]
import 'dart:async';
f() async => true;
g() async => () => true;
main() async {
assert(await f());
;
;
;
{}
{}
assert(await g());
}