2019-04-29 17:45:22 -07:00
|
|
|
error[E0726]: implicit elided lifetime not allowed here
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/trait-elided.rs:5:6
|
2018-03-21 17:12:39 -04:00
|
|
|
|
|
2022-03-06 15:44:48 +01:00
|
|
|
LL | impl MyTrait for u32 {}
|
2022-03-10 23:12:35 +01:00
|
|
|
| ^^^^^^^ expected lifetime parameter
|
2021-07-19 23:44:35 -04:00
|
|
|
|
|
2022-03-10 23:12:35 +01:00
|
|
|
help: indicate the anonymous lifetime
|
|
|
|
|
|
|
|
|
LL | impl MyTrait<'_> for u32 {}
|
|
|
|
| ++++
|
2018-03-21 17:12:39 -04:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2018-03-21 17:12:39 -04:00
|
|
|
|
2022-02-28 14:37:27 +01:00
|
|
|
For more information about this error, try `rustc --explain E0726`.
|