2023-01-01 23:48:10 +00:00
|
|
|
error[E0412]: cannot find type `UUU` in this scope
|
2025-01-30 04:23:14 +00:00
|
|
|
--> $DIR/ignore-err-clauses.rs:7:5
|
2023-01-01 23:48:10 +00:00
|
|
|
|
|
|
|
|
|
LL | UUU: Copy,
|
|
|
|
|
| ^^^ not found in this scope
|
|
|
|
|
|
2025-01-30 04:23:14 +00:00
|
|
|
error[E0282]: type annotations needed
|
|
|
|
|
--> $DIR/ignore-err-clauses.rs:3:14
|
|
|
|
|
|
|
|
|
|
|
LL | fn dbl<T>(x: T) -> <T as Add>::Output
|
|
|
|
|
| ^ cannot infer type for type parameter `T`
|
|
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2023-01-01 23:48:10 +00:00
|
|
|
|
2025-01-30 04:23:14 +00:00
|
|
|
Some errors have detailed explanations: E0282, E0412.
|
|
|
|
|
For more information about an error, try `rustc --explain E0282`.
|