summaryrefslogtreecommitdiffstats
path: root/src/test/ui/privacy/effective_visibilities.stderr
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.stderr
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.stderr')
-rw-r--r--src/test/ui/privacy/effective_visibilities.stderr140
1 files changed, 0 insertions, 140 deletions
diff --git a/src/test/ui/privacy/effective_visibilities.stderr b/src/test/ui/privacy/effective_visibilities.stderr
deleted file mode 100644
index 046b6095f..000000000
--- a/src/test/ui/privacy/effective_visibilities.stderr
+++ /dev/null
@@ -1,140 +0,0 @@
-error: Direct: pub(crate), Reexported: pub(crate), Reachable: pub(crate), ReachableThroughImplTrait: pub(crate)
- --> $DIR/effective_visibilities.rs:4:1
- |
-LL | mod outer {
- | ^^^^^^^^^
-
-error: Direct: pub(crate), Reexported: pub, Reachable: pub, ReachableThroughImplTrait: pub
- --> $DIR/effective_visibilities.rs:6:5
- |
-LL | pub mod inner1 {
- | ^^^^^^^^^^^^^^
-
-error: not in the table
- --> $DIR/effective_visibilities.rs:9:9
- |
-LL | extern "C" {}
- | ^^^^^^^^^^^^^
-
-error: Direct: pub(crate), Reexported: pub, Reachable: pub, ReachableThroughImplTrait: pub
- --> $DIR/effective_visibilities.rs:12:9
- |
-LL | pub trait PubTrait {
- | ^^^^^^^^^^^^^^^^^^
-
-error: Direct: pub(self), Reexported: pub(self), Reachable: pub(self), ReachableThroughImplTrait: pub(self)
- --> $DIR/effective_visibilities.rs:20:9
- |
-LL | struct PrivStruct;
- | ^^^^^^^^^^^^^^^^^
-
-error: Direct: pub(self), Reexported: pub(self), Reachable: pub(self), ReachableThroughImplTrait: pub(self)
- --> $DIR/effective_visibilities.rs:20:9
- |
-LL | struct PrivStruct;
- | ^^^^^^^^^^^^^^^^^
-
-error: Direct: pub(crate), Reexported: pub, Reachable: pub, ReachableThroughImplTrait: pub
- --> $DIR/effective_visibilities.rs:24:9
- |
-LL | pub union PubUnion {
- | ^^^^^^^^^^^^^^^^^^
-
-error: Direct: pub(self), Reexported: pub(self), Reachable: pub(self), ReachableThroughImplTrait: pub(self)
- --> $DIR/effective_visibilities.rs:26:13
- |
-LL | a: u8,
- | ^^^^^
-
-error: Direct: pub(crate), Reexported: pub, Reachable: pub, ReachableThroughImplTrait: pub
- --> $DIR/effective_visibilities.rs:28:13
- |
-LL | pub b: u8,
- | ^^^^^^^^^
-
-error: Direct: pub(crate), Reexported: pub, Reachable: pub, ReachableThroughImplTrait: pub
- --> $DIR/effective_visibilities.rs:32:9
- |
-LL | pub enum Enum {
- | ^^^^^^^^^^^^^
-
-error: Direct: pub(crate), Reexported: pub, Reachable: pub, ReachableThroughImplTrait: pub
- --> $DIR/effective_visibilities.rs:34:13
- |
-LL | A(
- | ^
-
-error: Direct: pub(crate), Reexported: pub, Reachable: pub, ReachableThroughImplTrait: pub
- --> $DIR/effective_visibilities.rs:34:13
- |
-LL | A(
- | ^
-
-error: Direct: pub(crate), Reexported: pub, Reachable: pub, ReachableThroughImplTrait: pub
- --> $DIR/effective_visibilities.rs:37:17
- |
-LL | PubUnion,
- | ^^^^^^^^
-
-error: not in the table
- --> $DIR/effective_visibilities.rs:43:5
- |
-LL | macro_rules! none_macro {
- | ^^^^^^^^^^^^^^^^^^^^^^^
-
-error: Direct: pub(self), Reexported: pub, Reachable: pub, ReachableThroughImplTrait: pub
- --> $DIR/effective_visibilities.rs:49:5
- |
-LL | macro_rules! public_macro {
- | ^^^^^^^^^^^^^^^^^^^^^^^^^
-
-error: Direct: pub(crate), Reexported: pub(crate), Reachable: pub, ReachableThroughImplTrait: pub
- --> $DIR/effective_visibilities.rs:54:5
- |
-LL | pub struct ReachableStruct {
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-error: Direct: pub(crate), Reexported: pub(crate), Reachable: pub, ReachableThroughImplTrait: pub
- --> $DIR/effective_visibilities.rs:56:9
- |
-LL | pub a: u8,
- | ^^^^^^^^^
-
-error: Direct: pub, Reexported: pub, Reachable: pub, ReachableThroughImplTrait: pub
- --> $DIR/effective_visibilities.rs:61:9
- |
-LL | pub use outer::inner1;
- | ^^^^^^^^^^^^^
-
-error: Direct: pub(crate), Reexported: pub, Reachable: pub, ReachableThroughImplTrait: pub
- --> $DIR/effective_visibilities.rs:67:5
- |
-LL | pub type HalfPublicImport = u8;
- | ^^^^^^^^^^^^^^^^^^^^^^^^^
-
-error: Direct: pub(crate), Reexported: pub(crate), Reachable: pub(crate), ReachableThroughImplTrait: pub(crate)
- --> $DIR/effective_visibilities.rs:70:5
- |
-LL | pub(crate) const HalfPublicImport: u8 = 0;
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-error: Direct: pub, Reexported: pub, Reachable: pub, ReachableThroughImplTrait: pub
- --> $DIR/effective_visibilities.rs:74:9
- |
-LL | pub use half_public_import::HalfPublicImport;
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
-
-error: Direct: pub(crate), Reexported: pub, Reachable: pub, ReachableThroughImplTrait: pub
- --> $DIR/effective_visibilities.rs:14:13
- |
-LL | const A: i32;
- | ^^^^^^^^^^^^
-
-error: Direct: pub(crate), Reexported: pub, Reachable: pub, ReachableThroughImplTrait: pub
- --> $DIR/effective_visibilities.rs:16:13
- |
-LL | type B;
- | ^^^^^^
-
-error: aborting due to 23 previous errors
-