2022-02-13 14:06:06 -06:00
|
|
|
error[E0425]: cannot find value `oops` in this scope
|
2022-08-27 15:59:07 -05:00
|
|
|
--> $DIR/fn-help-with-err.rs:14:35
|
2022-02-13 14:06:06 -06:00
|
|
|
|
|
|
|
|
LL | let arc = std::sync::Arc::new(oops);
|
|
|
|
| ^^^^ not found in this scope
|
|
|
|
|
2022-08-27 15:59:07 -05:00
|
|
|
error[E0599]: no method named `bar` found for struct `Arc<_>` in the current scope
|
|
|
|
--> $DIR/fn-help-with-err.rs:17:9
|
2022-02-13 14:06:06 -06:00
|
|
|
|
|
2022-08-27 15:59:07 -05:00
|
|
|
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 {
|
|
|
|
| ^^^^^^^^^
|
2022-02-13 14:06:06 -06:00
|
|
|
|
2022-12-13 18:57:34 -06:00
|
|
|
error[E0599]: no method named `bar` found for struct `Arc<[closure@fn-help-with-err.rs:22:36]>` in the current scope
|
2022-08-27 15:59:07 -05:00
|
|
|
--> $DIR/fn-help-with-err.rs:23:10
|
|
|
|
|
|
|
|
|
LL | arc2.bar();
|
2022-12-13 18:57:34 -06:00
|
|
|
| ^^^ method not found in `Arc<[closure@fn-help-with-err.rs:22:36]>`
|
2022-08-27 15:59:07 -05:00
|
|
|
|
|
|
|
|
= 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
|
2022-02-13 14:06:06 -06:00
|
|
|
|
|
2022-08-27 15:59:07 -05:00
|
|
|
LL | arc2().bar();
|
|
|
|
| ++
|
2022-02-13 14:06:06 -06:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|
|
|
|
Some errors have detailed explanations: E0425, E0599.
|
|
|
|
For more information about an error, try `rustc --explain E0425`.
|