2023-02-23 11:27:06 -06:00
|
|
|
error[E0107]: struct takes 1 generic argument but 2 generic arguments were supplied
|
2021-01-02 12:45:11 -06:00
|
|
|
--> $DIR/invalid-constant-in-args.rs:4:12
|
2019-03-07 17:39:01 -06:00
|
|
|
|
|
2020-11-18 12:31:59 -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
|
|
|
|
2023-11-21 09:44:16 -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`.
|