blob: 3ca1209f156f75f5221dfaf2a8917817e479e744 [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
* partHeader:
* metadata part of identifier (`.' identifier)* `;'
* ;
* partDeclaration:
* partHeader topLevelDefinition* EOF
* ;
* A part header begins with part of followed by the name of the library the
* part belongs to. A part declaration consists of a part header followed by a
* sequence of top-level declarations.
* It is a compile-time error if the contents of the URI are not a
* valid part declaration.
* @description Checks that it is a compile-time error if the included part
* contains an expression where a top-level definition is expected.
* @compile-error
* @author rodionov
* @reviewer kaigorodov
*/
part "3_Part_7.dart";
main() {
}