blob: 19a1c913e0b41f06f02e17f43333463e2fdd6bd2 [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);