blob: 0a8ed79fe2d52e28e6a27bf245a050cfa8fa43e8 [file] [log] [blame]
// Copyright (c) 2011, 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.
// @dart = 2.9
/// @assertion Optional parameters may be specified and provided with default
/// values.
/// defaultFormalParameter:
/// normalFormalParameter ('=' expression)?
/// ;
/// defaultNamedParameter:
/// normalFormalParameter (':' expression)?
/// ;
/// @description Checks that a statement cannot be used instead of expression
/// in an optional positional parameter declaration.
/// @author iefremov
/// @reviewer kaigorodov
/// @reviewer rodionov
f([var x = var z]) {}
// ^
// [analyzer] unspecified
// [cfe] unspecified
main() {
try {
f();
} catch (x) {}
}