blob: 2b0944b859d7dfca7a15f4fd7ad5e5e129d6003b [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.
/// @assertion A function declaration statement declares a new local function.
/// localFunctionDeclaration:
/// functionSignature functionBody
/// ;
/// functionSignature:
/// metadata returnType? identifier formalParameterList
/// ;
/// returnType:
/// void |
/// type
/// ;
/// functionBody:
/// async? ‘=>’ expression ‘;’ |
/// (async | async* | sync*)? block
/// ;
/// block:
/// '{' statements '}'
/// ;
/// @description Checks that it is a compile error if a local function
/// declaration with a block for a body is missing the formal parameter list.
/// @author kaigorodov
main() {
void function1 {}
// ^
// [analyzer] unspecified
// [cfe] unspecified
function1();
//^
// [analyzer] unspecified
// [cfe] unspecified
}