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