rust/tests/ui/const-generics/invalid-constant-in-args.stderr

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

12 lines
431 B
Plaintext
Raw Normal View History

error[E0107]: struct takes 1 generic argument but 2 generic arguments were supplied
--> $DIR/invalid-constant-in-args.rs:4:12
2019-03-07 17:39:01 -06:00
|
LL | let _: Cell<&str, "a"> = Cell::new("");
2024-07-22 17:51:53 -05:00
| ^^^^ ----- help: remove the unnecessary generic argument
| |
| expected 1 generic argument
2019-03-07 17:39:01 -06:00
error: aborting due to 1 previous error
2019-03-07 17:39:01 -06:00
For more information about this error, try `rustc --explain E0107`.