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