mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
a5b639dc01
Consider `tests/ui/const-generics/generic_const_exprs/issue-102768.stderr`, the error message where it gives additional notes about where the associated type is defined, and how the dead code lint doesn't have an article, like in `tests/ui/lint/dead-code/issue-85255.stderr`. They don't have articles, so it seems unnecessary to have one here.
11 lines
418 B
Text
11 lines
418 B
Text
error[E0107]: struct takes 1 generic argument but 2 generic arguments were supplied
|
|
--> $DIR/invalid-constant-in-args.rs:4:12
|
|
|
|
|
LL | let _: Cell<&str, "a"> = Cell::new("");
|
|
| ^^^^ --- help: remove this generic argument
|
|
| |
|
|
| expected 1 generic argument
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0107`.
|