blob: 134e29dc6171c48179dcb39d179c8ae2aeb08aee [file] [log] [blame]
// Copyright (c) 2016, 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
// Verify that import prefixes within an imported library don't shadow
// names re-exported by that library.
import "package:expect/expect.dart";
import "not_shadowed_by_prefix_helper.dart";
main() {
f();
Expect.isTrue(f_called);
}