From 218caa410aa38c29984be31a5229b9fa717560ee Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:19:13 +0200 Subject: Merging upstream version 1.68.2+dfsg1. Signed-off-by: Daniel Baumann --- src/test/ui/privacy/effective_visibilities_glob.rs | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 src/test/ui/privacy/effective_visibilities_glob.rs (limited to 'src/test/ui/privacy/effective_visibilities_glob.rs') 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() {} -- cgit v1.2.3