blob: 615ace3af222994d9acbca14d7671830521bc5b1 [file] [log] [blame]
// @dart = 2.6
const int foo = 21;
const int bar = 42;
const int baz = 84;
typedef void F(@foo int x, num y, {@bar @baz String z, Object w});
typedef void G(@foo int a, num b, [@bar @baz String c, Object d]);
main() {}