blob: 74631a0378601213168cfd4f5834a93586c1d2be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
error[E0726]: implicit elided lifetime not allowed here
--> $DIR/trait-elided.rs:5:6
|
LL | impl MyTrait for u32 {}
| ^^^^^^^ expected lifetime parameter
|
help: indicate the anonymous lifetime
|
LL | impl MyTrait<'_> for u32 {}
| ++++
error: aborting due to previous error
For more information about this error, try `rustc --explain E0726`.
|