blob: 05b8e95dcddb2654181e2b6f3fc404835fc381fe [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 libraryDefinition:
/// scriptTag? libraryName? importOrExport* partDirective* topLevelDefinition*
/// ;
/// scriptTag:
/// ‘#!’ ( ̃NEWLINE)* NEWLINE
/// ;
/// libraryName:
/// metadata library identifier (‘.’ identifier)* ‘;’
/// ;
/// importOrExport:
/// libraryImport |
/// libraryExport
/// ;
/// Libraries may be explicitly named or implicitly named. An explicitly named
/// library begins with the word library (possibly prefaced with any applicable
/// metadata annotations), followed by a qualified identifier that gives the
/// name of the library.
/// @description Checks that a library is parsed without errors if all allowed
/// directives are present in permitted numbers and in the correct order.
/// @author msyabro
/// @reviewer rodionov
import "definition_syntax_t11_lib.dart";
main() {
int x = boo + boo1 + boo2 + boo3;
}