summaryrefslogtreecommitdiffstats
path: root/src/test/ui/functions-closures/fn-help-with-err.stderr
blob: 2296666219eef2fbb284e11e7699db91b4adb20d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
error[E0425]: cannot find value `oops` in this scope
  --> $DIR/fn-help-with-err.rs:14:35
   |
LL |     let arc = std::sync::Arc::new(oops);
   |                                   ^^^^ not found in this scope

error[E0599]: no method named `bar` found for struct `Arc<_>` in the current scope
  --> $DIR/fn-help-with-err.rs:17:9
   |
LL |     arc.bar();
   |         ^^^ method not found in `Arc<_>`
   |
   = help: items from traits can only be used if the trait is implemented and in scope
note: `Bar` defines an item `bar`, perhaps you need to implement it
  --> $DIR/fn-help-with-err.rs:5:1
   |
LL | trait Bar {
   | ^^^^^^^^^

error[E0599]: no method named `bar` found for struct `Arc<[closure@$DIR/fn-help-with-err.rs:22:36: 22:38]>` in the current scope
  --> $DIR/fn-help-with-err.rs:23:10
   |
LL |     arc2.bar();
   |          ^^^ method not found in `Arc<[closure@$DIR/fn-help-with-err.rs:22:36: 22:38]>`
   |
   = help: items from traits can only be used if the trait is implemented and in scope
note: `Bar` defines an item `bar`, perhaps you need to implement it
  --> $DIR/fn-help-with-err.rs:5:1
   |
LL | trait Bar {
   | ^^^^^^^^^
help: use parentheses to call this closure
   |
LL |     arc2().bar();
   |         ++

error: aborting due to 3 previous errors

Some errors have detailed explanations: E0425, E0599.
For more information about an error, try `rustc --explain E0425`.