summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-56175.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/issues/issue-56175.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/issues/issue-56175.stderr')
-rw-r--r--src/test/ui/issues/issue-56175.stderr37
1 files changed, 0 insertions, 37 deletions
diff --git a/src/test/ui/issues/issue-56175.stderr b/src/test/ui/issues/issue-56175.stderr
deleted file mode 100644
index 013a440ed..000000000
--- a/src/test/ui/issues/issue-56175.stderr
+++ /dev/null
@@ -1,37 +0,0 @@
-error[E0599]: no method named `trait_method` found for struct `FooStruct` in the current scope
- --> $DIR/issue-56175.rs:5:33
- |
-LL | reexported_trait::FooStruct.trait_method();
- | ^^^^^^^^^^^^ method not found in `FooStruct`
- |
- ::: $DIR/auxiliary/reexported-trait.rs:3:12
- |
-LL | fn trait_method(&self) {
- | ------------ the method is available for `FooStruct` here
- |
- = help: items from traits can only be used if the trait is in scope
-help: the following trait is implemented but not in scope; perhaps add a `use` for it:
- |
-LL | use reexported_trait::Trait;
- |
-
-error[E0599]: no method named `trait_method_b` found for struct `FooStruct` in the current scope
- --> $DIR/issue-56175.rs:7:33
- |
-LL | reexported_trait::FooStruct.trait_method_b();
- | ^^^^^^^^^^^^^^ method not found in `FooStruct`
- |
- ::: $DIR/auxiliary/reexported-trait.rs:7:12
- |
-LL | fn trait_method_b(&self) {
- | -------------- the method is available for `FooStruct` here
- |
- = help: items from traits can only be used if the trait is in scope
-help: the following trait is implemented but not in scope; perhaps add a `use` for it:
- |
-LL | use reexported_trait::TraitBRename;
- |
-
-error: aborting due to 2 previous errors
-
-For more information about this error, try `rustc --explain E0599`.