blob: 6de726480e772e098322a08dca9c4ceb6faab8b1 [file] [log] [blame]
// Copyright (c) 2024, 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 Augmentations do not share an import scope with the main library
/// or each other. The libraries one augmentation imports are visible only to
/// that file.
///
/// @description Checks that imports in an augmentation library are not visible
/// in another augmentation library even if it exports it
/// @author sgrekhov22@gmail.com
// SharedOptions=--enable-experiment=macros
import augment 'defining_augmentation_A02_t04_lib1.dart';
import augment 'defining_augmentation_A02_t04_lib2.dart';
main() {
test();
}