blob: 6ef32b7b1987c3c3f261be10034e32d4b2f6f40c [file] [log] [blame]
// @dart = 2.9
library test;
void optional_toplevel([List<int> x = const []]) {}
void named_toplevel({List<int> x: const []}) {}
main() {}