summaryrefslogtreecommitdiffstats
path: root/src/test/ui/privacy/privacy-ns1.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/privacy-ns1.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/privacy-ns1.stderr')
-rw-r--r--src/test/ui/privacy/privacy-ns1.stderr67
1 files changed, 0 insertions, 67 deletions
diff --git a/src/test/ui/privacy/privacy-ns1.stderr b/src/test/ui/privacy/privacy-ns1.stderr
deleted file mode 100644
index 91bc84e70..000000000
--- a/src/test/ui/privacy/privacy-ns1.stderr
+++ /dev/null
@@ -1,67 +0,0 @@
-error[E0423]: expected function, tuple struct or tuple variant, found trait `Bar`
- --> $DIR/privacy-ns1.rs:20:5
- |
-LL | pub struct Baz;
- | --------------- similarly named unit struct `Baz` defined here
-...
-LL | Bar();
- | ^^^
- |
-help: a unit struct with a similar name exists
- |
-LL | Baz();
- | ~~~
-help: consider importing this function instead
- |
-LL | use foo2::Bar;
- |
-
-error[E0425]: cannot find function, tuple struct or tuple variant `Bar` in this scope
- --> $DIR/privacy-ns1.rs:51:5
- |
-LL | pub struct Baz;
- | --------------- similarly named unit struct `Baz` defined here
-...
-LL | Bar();
- | ^^^
- |
-help: a unit struct with a similar name exists
- |
-LL | Baz();
- | ~~~
-help: consider importing this function
- |
-LL | use foo2::Bar;
- |
-
-error[E0412]: cannot find type `Bar` in this scope
- --> $DIR/privacy-ns1.rs:52:17
- |
-LL | pub struct Baz;
- | --------------- similarly named struct `Baz` defined here
-...
-LL | let _x: Box<Bar>;
- | ^^^
- |
-help: a struct with a similar name exists
- |
-LL | let _x: Box<Baz>;
- | ~~~
-help: consider importing this trait
- |
-LL | use foo1::Bar;
- |
-
-error[E0747]: constant provided when a type was expected
- --> $DIR/privacy-ns1.rs:35:17
- |
-LL | let _x: Box<Bar>;
- | ^^^
- |
- = help: `Bar` is a function item, not a type
- = help: function item types cannot be named directly
-
-error: aborting due to 4 previous errors
-
-Some errors have detailed explanations: E0412, E0423, E0425, E0747.
-For more information about an error, try `rustc --explain E0412`.