rust/tests/ui/generics/generic-arg-mismatch-recover.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
1.5 KiB
Plaintext
Raw Normal View History

error[E0107]: struct takes 1 lifetime argument but 2 lifetime arguments were supplied
--> $DIR/generic-arg-mismatch-recover.rs:6:5
|
2019-03-09 12:03:44 +00:00
LL | Foo::<'static, 'static, ()>(&0);
2021-02-18 20:01:44 +00:00
| ^^^ ------- help: remove this lifetime argument
| |
| expected 1 lifetime argument
|
note: struct defined here, with 1 lifetime parameter: `'a`
--> $DIR/generic-arg-mismatch-recover.rs:1:8
|
LL | struct Foo<'a, T: 'a>(&'a T);
| ^^^ --
error[E0107]: struct takes 1 lifetime argument but 2 lifetime arguments were supplied
--> $DIR/generic-arg-mismatch-recover.rs:9:5
|
2019-03-09 12:03:44 +00:00
LL | Bar::<'static, 'static, ()>(&());
2021-02-18 20:01:44 +00:00
| ^^^ ------- help: remove this lifetime argument
| |
| expected 1 lifetime argument
|
note: struct defined here, with 1 lifetime parameter: `'a`
--> $DIR/generic-arg-mismatch-recover.rs:3:8
|
LL | struct Bar<'a>(&'a ());
| ^^^ --
error[E0107]: struct takes 0 generic arguments but 1 generic argument was supplied
--> $DIR/generic-arg-mismatch-recover.rs:9:5
|
2019-03-09 12:03:44 +00:00
LL | Bar::<'static, 'static, ()>(&());
2021-02-18 20:01:44 +00:00
| ^^^ -- help: remove this generic argument
| |
2021-02-18 20:01:44 +00:00
| expected 0 generic arguments
|
2021-02-18 20:01:44 +00:00
note: struct defined here, with 0 generic parameters
--> $DIR/generic-arg-mismatch-recover.rs:3:8
|
LL | struct Bar<'a>(&'a ());
| ^^^
error: aborting due to 3 previous errors
For more information about this error, try `rustc --explain E0107`.