blob: be913646e65ffa4b1de99c36c29dec493433e192 [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) {}