blob: bb4276115b5d16a9f1d2e13bcf1188c2c2e2f5e2 [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 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 not an error when the identifiers used with
/// show/hide combinators are also named 'hide' and 'show', and that filtering
/// the export namespace is done correctly.
/// @author rodionov
/// @reviewer kaigorodov
import "../../../Utils/expect.dart";
import "syntax_t02_lib.dart";
main() {
Expect.equals(hide, "hide");
}