Files
rust/tests/ui/where-clauses/ignore-err-clauses.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
499 B
Plaintext
Raw Normal View History

error[E0412]: cannot find type `UUU` in this scope
2025-01-30 04:23:14 +00:00
--> $DIR/ignore-err-clauses.rs:7:5
|
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
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`.