blob: f3df2a39855632a57842dc5d670a425ae6a5a2c0 [file] [log] [blame]
// @dart = 2.9
bar(int a, List<int> b) {}
expect(expected, actual) {}
foo(int x) async => bar(x - 1, x != null ? [x + 1, x + 2, await null] : null);
void main() async => await foo(0);