blob: 05e2692102b87be8bf949107f13176e743bbcfa0 [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 when this library
* references itself in a part directive (and contains a part declaration).
* @compile-error
* @author rodionov
* @reviewer kaigorodov
*/
library Parts_test_lib;
part of Parts_test_lib;
part "3_Parts_A01_t06.dart";
main() {
}