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