summaryrefslogtreecommitdiffstats
path: root/src/test/ui/privacy/effective_visibilities_glob.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /src/test/ui/privacy/effective_visibilities_glob.rs
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/privacy/effective_visibilities_glob.rs')
-rw-r--r--src/test/ui/privacy/effective_visibilities_glob.rs21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/test/ui/privacy/effective_visibilities_glob.rs b/src/test/ui/privacy/effective_visibilities_glob.rs
deleted file mode 100644
index eb9dcd6cd..000000000
--- a/src/test/ui/privacy/effective_visibilities_glob.rs
+++ /dev/null
@@ -1,21 +0,0 @@
-// Effective visibility tracking for imports is fine-grained, so `S2` is not fully exported
-// even if its parent import (`m::*`) is fully exported as a `use` item.
-
-#![feature(rustc_attrs)]
-
-mod m {
- #[rustc_effective_visibility]
- pub struct S1 {} //~ ERROR Direct: pub(crate), Reexported: pub, Reachable: pub, ReachableThroughImplTrait: pub
- #[rustc_effective_visibility]
- pub struct S2 {} //~ ERROR Direct: pub(crate), Reexported: pub(crate), Reachable: pub(crate), ReachableThroughImplTrait: pub(crate)
-}
-
-mod glob {
- #[rustc_effective_visibility]
- pub use crate::m::*; //~ ERROR Direct: pub(crate), Reexported: pub, Reachable: pub, ReachableThroughImplTrait: pub
-}
-
-#[rustc_effective_visibility]
-pub use glob::S1; //~ ERROR Direct: pub, Reexported: pub, Reachable: pub, ReachableThroughImplTrait: pub
-
-fn main() {}