]> git.lizzy.rs Git - rust.git/blob - src/test/ui/functions-closures/fn-help-with-err.stderr
Merge commit '2b2190cb5667cdd276a24ef8b9f3692209c54a89' into clippyup
[rust.git] / src / test / ui / functions-closures / fn-help-with-err.stderr
1 error[E0425]: cannot find value `oops` in this scope
2   --> $DIR/fn-help-with-err.rs:3:35
3    |
4 LL |     let arc = std::sync::Arc::new(oops);
5    |                                   ^^^^ not found in this scope
6
7 error[E0599]: no method named `blablabla` found for struct `Arc<_>` in the current scope
8   --> $DIR/fn-help-with-err.rs:7:9
9    |
10 LL |     arc.blablabla();
11    |         ^^^^^^^^^ method not found in `Arc<_>`
12
13 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
14   --> $DIR/fn-help-with-err.rs:12:10
15    |
16 LL |     arc2.blablabla();
17    |     ---- ^^^^^^^^^ method not found in `Arc<[closure@$DIR/fn-help-with-err.rs:10:36: 10:38]>`
18    |     |
19    |     this is a function, perhaps you wish to call it
20
21 error: aborting due to 3 previous errors
22
23 Some errors have detailed explanations: E0425, E0599.
24 For more information about an error, try `rustc --explain E0425`.