summaryrefslogtreecommitdiffstats
path: root/src/test/ui/functions-closures/fn-help-with-err.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
commit698f8c2f01ea549d77d7dc3338a12e04c11057b9 (patch)
tree173a775858bd501c378080a10dca74132f05bc50 /src/test/ui/functions-closures/fn-help-with-err.stderr
parentInitial commit. (diff)
downloadrustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.tar.xz
rustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.zip
Adding upstream version 1.64.0+dfsg1.upstream/1.64.0+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/functions-closures/fn-help-with-err.stderr')
-rw-r--r--src/test/ui/functions-closures/fn-help-with-err.stderr24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/test/ui/functions-closures/fn-help-with-err.stderr b/src/test/ui/functions-closures/fn-help-with-err.stderr
new file mode 100644
index 000000000..06e29daef
--- /dev/null
+++ b/src/test/ui/functions-closures/fn-help-with-err.stderr
@@ -0,0 +1,24 @@
+error[E0425]: cannot find value `oops` in this scope
+ --> $DIR/fn-help-with-err.rs:3:35
+ |
+LL | let arc = std::sync::Arc::new(oops);
+ | ^^^^ not found in this scope
+
+error[E0599]: no method named `blablabla` found for struct `Arc<_>` in the current scope
+ --> $DIR/fn-help-with-err.rs:7:9
+ |
+LL | arc.blablabla();
+ | ^^^^^^^^^ method not found in `Arc<_>`
+
+error[E0599]: no method named `blablabla` found for struct `Arc<[closure@$DIR/fn-help-with-err.rs:10:36: 10:38]>` in the current scope
+ --> $DIR/fn-help-with-err.rs:12:10
+ |
+LL | arc2.blablabla();
+ | ---- ^^^^^^^^^ method not found in `Arc<[closure@$DIR/fn-help-with-err.rs:10:36: 10:38]>`
+ | |
+ | this is a function, perhaps you wish to call it
+
+error: aborting due to 3 previous errors
+
+Some errors have detailed explanations: E0425, E0599.
+For more information about an error, try `rustc --explain E0425`.