File: fn-help-with-err.stderr

package info (click to toggle)
rustc-web 1.85.0%2Bdfsg3-1~deb12u3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,759,988 kB
  • sloc: xml: 158,127; python: 35,830; javascript: 19,497; cpp: 19,002; sh: 17,245; ansic: 13,127; asm: 4,376; makefile: 1,056; lisp: 29; perl: 29; ruby: 19; sql: 11
file content (27 lines) | stat: -rw-r--r-- 965 bytes parent folder | download | duplicates (7)
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
error[E0425]: cannot find value `oops` in this scope
  --> $DIR/fn-help-with-err.rs:13:35
   |
LL |     let arc = std::sync::Arc::new(oops);
   |                                   ^^^^ not found in this scope

error[E0599]: no method named `bar` found for struct `Arc<{closure@$DIR/fn-help-with-err.rs:18:36: 18:38}>` in the current scope
  --> $DIR/fn-help-with-err.rs:19:10
   |
LL |     arc2.bar();
   |          ^^^ method not found in `Arc<{closure@fn-help-with-err.rs:18:36}>`
   |
   = 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 2 previous errors

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