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