]> git.lizzy.rs Git - rust.git/blob - tests/ui/const-generics/invalid-constant-in-args.stderr
Auto merge of #106908 - cjgillot:copyprop-ssa, r=oli-obk
[rust.git] / tests / ui / const-generics / invalid-constant-in-args.stderr
1 error[E0107]: this struct takes 1 generic argument but 2 generic arguments were supplied
2   --> $DIR/invalid-constant-in-args.rs:4:12
3    |
4 LL |     let _: Cell<&str, "a"> = Cell::new("");
5    |            ^^^^       --- help: remove this generic argument
6    |            |
7    |            expected 1 generic argument
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0107`.