]> git.lizzy.rs Git - rust.git/blob - src/test/ui/const-generics/invalid-constant-in-args.stderr
Override rustc version in ui and mir-opt tests to get stable hashes
[rust.git] / src / test / 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 note: struct defined here, with 1 generic parameter: `T`
10   --> $SRC_DIR/core/src/cell.rs:LL:COL
11    |
12 LL | pub struct Cell<T: ?Sized> {
13    |            ^^^^ -
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0107`.