blob: eebff6b98ff6e0acc0e130f02f70486f604537aa [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 The modifier required is added as a built-in identifier. The
/// grammar of function types is extended to allow any named parameter
/// declaration to be prefixed by the required modifier (e.g. int Function(int,
/// {int? y, required int z}).
///
/// @description Checks that the 'required' word can be used as a variable name
/// @author sgrekhov@unipro.ru
import "../../Utils/expect.dart";
double required = 3.14;
test () {
double required = -3.14;
Expect.equals(-3.14, required);
}
main() {
Expect.equals(3.14, required);
test();
}