blob: 4a930954337e4f91801bd79510c08872e43caa3a [file] [log] [blame]
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);