blob: 46fb0af7d4b0c5b8b6ec6ec9999684443d07dba8 [file] [log] [blame]
// @dart = 2.9
library test;
void foo(
[Map<int, String> m1 = const {1: "hello"},
Map<int, String> m2 = const {"hello": "world"}]) {}
void test() {}
main() {}