blob: e5470faf3aac42fdae7419228d5ee5a3d2c334eb [file] [log] [blame]
// Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
/// @assertion It is a static warning if an instance method m1 overrides an
/// instance member m2 and m1 does not declare all the named parameters declared
/// by m2.
/// @description Checks that a compile error is produced if m1 has almost the
/// same set of named parameters as m2 except for one of them having a different
/// name.
/// @author sgrekhov@unipro.ru
class A {
f({var x, var y, var z}) {}
}
typedef AAlias = A;
class C extends AAlias {
f({var x, var y, var zz}) {}
//^
// [analyzer] unspecified
// [cfe] unspecified
}
main() {
new A().f(x: "Lily", y: "was", z: "here");
new C().f(x:"Lily", y:"was", zz:"here");
}