blob: 2ed5fdf14e493c7355acf66227d0e0ded89e02c2 [file] [log] [blame]
// Copyright (c) 2021, 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 Since named arguments are distinguishable from positional ones,
/// allowing named arguments to be placed anywhere in the argument list can be
/// done without changing calling semantics.
///
/// @description Checks that named arguments may be placed anywhere in the
/// argument list. Test instance method
/// @author sgrekhov@unipro.ru
// SharedOptions=--enable-experiment=named-arguments-anywhere
import "../../Utils/expect.dart";
class C {
String foo(int x, int y, {int z = 42}) => "x=$x, y=$y, z=$z";
}
main() {
Expect.equals("x=1, y=2, z=3", C().foo(1, 2, z: 3));
Expect.equals("x=1, y=2, z=3", C().foo(z: 3, 1, 2));
Expect.equals("x=1, y=2, z=3", C().foo(1, z: 3, 2));
}