]> git.proxmox.com Git - rustc.git/blame - src/test/ui/typeck/typeck_type_placeholder_lifetime_1.stderr
New upstream version 1.54.0+dfsg1
[rustc.git] / src / test / ui / typeck / typeck_type_placeholder_lifetime_1.stderr
CommitLineData
17df50a5 1error[E0107]: this struct takes 1 generic argument but 2 generic arguments were supplied
5869c6ff 2 --> $DIR/typeck_type_placeholder_lifetime_1.rs:9:12
b7449926
XL
3 |
4LL | let c: Foo<_, _> = Foo { r: &5 };
17df50a5 5 | ^^^ - help: remove this generic argument
5869c6ff 6 | |
17df50a5 7 | expected 1 generic argument
5869c6ff 8 |
17df50a5 9note: struct defined here, with 1 generic parameter: `T`
5869c6ff
XL
10 --> $DIR/typeck_type_placeholder_lifetime_1.rs:4:8
11 |
12LL | struct Foo<'a, T:'a> {
13 | ^^^ -
b7449926
XL
14
15error: aborting due to previous error
16
17For more information about this error, try `rustc --explain E0107`.