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