]> git.lizzy.rs Git - rust.git/blob - tests/ui/generics/generic-impl-more-params-with-defaults.stderr
Rollup merge of #106935 - TaKO8Ki:fix-104440, r=cjgillot
[rust.git] / tests / ui / generics / generic-impl-more-params-with-defaults.stderr
1 error[E0107]: this struct takes at most 2 generic arguments but 3 generic arguments were supplied
2   --> $DIR/generic-impl-more-params-with-defaults.rs:13:5
3    |
4 LL |     Vec::<isize, Heap, bool>::new();
5    |     ^^^                ---- help: remove this generic argument
6    |     |
7    |     expected at most 2 generic arguments
8    |
9 note: struct defined here, with at most 2 generic parameters: `T`, `A`
10   --> $DIR/generic-impl-more-params-with-defaults.rs:5:8
11    |
12 LL | struct Vec<T, A = Heap>(
13    |        ^^^ -  --------
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0107`.