blob: 039d73203be5dd92b48d774a9d9e2b26b35f4cdd [file] [log] [blame]
// @dart = 2.9
class Constant {
const Constant();
}
class NotConstant {}
foo({a: Constant(), b: Constant(), c: []}) {}
test() {}
main() {}