2022-09-21 10:57:30 -05:00
|
|
|
error[E0369]: binary operation `==` cannot be applied to type `for<'a> fn(&'a i32) -> &'a i32 {foo}`
|
2020-12-20 09:39:25 -06:00
|
|
|
--> $DIR/issue-77910-1.rs:8:5
|
|
|
|
|
|
|
|
|
LL | assert_eq!(foo, y);
|
2021-10-14 13:28:28 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^
|
2020-12-20 09:39:25 -06:00
|
|
|
| |
|
2022-09-21 10:57:30 -05:00
|
|
|
| for<'a> fn(&'a i32) -> &'a i32 {foo}
|
2020-12-20 09:39:25 -06:00
|
|
|
| _
|
|
|
|
|
|
2021-02-13 13:52:25 -06:00
|
|
|
= note: this error originates in the macro `assert_eq` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2020-12-20 09:39:25 -06:00
|
|
|
|
2022-09-21 10:57:30 -05:00
|
|
|
error[E0277]: `for<'a> fn(&'a i32) -> &'a i32 {foo}` doesn't implement `Debug`
|
2020-12-20 09:39:25 -06:00
|
|
|
--> $DIR/issue-77910-1.rs:8:5
|
|
|
|
|
|
2022-05-17 15:59:13 -05:00
|
|
|
LL | fn foo(s: &i32) -> &i32 {
|
|
|
|
| --- consider calling this function
|
|
|
|
...
|
2020-12-20 09:39:25 -06:00
|
|
|
LL | assert_eq!(foo, y);
|
2022-09-21 10:57:30 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^ `for<'a> fn(&'a i32) -> &'a i32 {foo}` cannot be formatted using `{:?}` because it doesn't implement `Debug`
|
2020-12-20 09:39:25 -06:00
|
|
|
|
|
2022-09-21 10:57:30 -05:00
|
|
|
= help: the trait `Debug` is not implemented for fn item `for<'a> fn(&'a i32) -> &'a i32 {foo}`
|
2022-10-09 17:25:52 -05:00
|
|
|
= help: use parentheses to call this function: `foo(/* &i32 */)`
|
2021-02-13 13:52:25 -06:00
|
|
|
= note: this error originates in the macro `assert_eq` (in Nightly builds, run with -Z macro-backtrace for more info)
|
2020-12-20 09:39:25 -06:00
|
|
|
|
2024-02-01 16:45:00 -06:00
|
|
|
error[E0381]: used binding `xs` isn't initialized
|
|
|
|
--> $DIR/issue-77910-1.rs:3:5
|
|
|
|
|
|
|
|
|
LL | let xs;
|
|
|
|
| -- binding declared here but left uninitialized
|
|
|
|
LL | xs
|
|
|
|
| ^^ `xs` used here but it isn't initialized
|
|
|
|
|
|
|
|
|
help: consider assigning a value
|
|
|
|
|
|
|
|
|
LL | let xs = todo!();
|
|
|
|
| +++++++++
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
2020-12-20 09:39:25 -06:00
|
|
|
|
2024-02-01 16:45:00 -06:00
|
|
|
Some errors have detailed explanations: E0277, E0369, E0381.
|
2020-12-20 09:39:25 -06:00
|
|
|
For more information about an error, try `rustc --explain E0277`.
|