blob: a70cc9d8514d3bf78f6ce9ce87b529b6cac5d4dc [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 library L exports a namespace, meaning that the declarations in
* the namespace are made available to other libraries if they choose to import
* L. The namespace that L exports is known as its exported namespace.
* libraryExport:
* metadata export uri combinator* `;'
* ;
* @description Checks that it is a compile-time error when there're no
* identifiers following a show combinator in an export declaration.
* @compile-error
* @author rodionov
*/
import "syntax_t04_lib.dart";
main() {
var x = foo;
}