blob: c137caa180e4fefd0d72fd971695cdfbfd07474c [file] [log] [blame]
// Copyright (c) 2019, 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.
/*library: scope=[
async.dart.FutureExtensions,
core.dart.EnumByName,
core.dart.EnumName,
lib1.dart.ShownExtension1,
lib2.dart.ShownExtension2]*/
import 'lib1.dart' show ShownExtension1;
import 'lib2.dart' hide HiddenExtension2;
main() {
ShownExtension1.staticMethod();
/*error: errors=[Undefined name 'HiddenExtension1'.]*/
HiddenExtension1.staticMethod();
ShownExtension2.staticMethod();
/*error: errors=[Undefined name 'HiddenExtension2'.]*/
HiddenExtension2.staticMethod();
}