]> git.proxmox.com Git - rustc.git/blame - src/test/ui/const-generics/invalid-constant-in-args.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / const-generics / invalid-constant-in-args.stderr
CommitLineData
5869c6ff
XL
1error[E0107]: this struct takes 1 generic argument but 2 generic arguments were supplied
2 --> $DIR/invalid-constant-in-args.rs:4:12
532ac7d7 3 |
fc512014 4LL | let _: Cell<&str, "a"> = Cell::new("");
17df50a5 5 | ^^^^ --- help: remove this generic argument
5869c6ff
XL
6 | |
7 | expected 1 generic argument
8 |
9note: struct defined here, with 1 generic parameter: `T`
10 --> $SRC_DIR/core/src/cell.rs:LL:COL
11 |
12LL | pub struct Cell<T: ?Sized> {
13 | ^^^^ -
532ac7d7
XL
14
15error: aborting due to previous error
16
17For more information about this error, try `rustc --explain E0107`.