]> git.lizzy.rs Git - rust.git/blob - tests/ui/typeck/typeck_type_placeholder_lifetime_1.stderr
Rollup merge of #107355 - JohnTitor:issue-60755, r=compiler-errors
[rust.git] / tests / ui / typeck / typeck_type_placeholder_lifetime_1.stderr
1 error[E0107]: this struct takes 1 generic argument but 2 generic arguments were supplied
2   --> $DIR/typeck_type_placeholder_lifetime_1.rs:9:12
3    |
4 LL |     let c: Foo<_, _> = Foo { r: &5 };
5    |            ^^^    - help: remove this generic argument
6    |            |
7    |            expected 1 generic argument
8    |
9 note: struct defined here, with 1 generic parameter: `T`
10   --> $DIR/typeck_type_placeholder_lifetime_1.rs:4:8
11    |
12 LL | struct Foo<'a, T:'a> {
13    |        ^^^     -
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0107`.