blob: 0589f9ae11cd10c5969660c0f5c4ba61e35da238 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
error[E0792]: expected generic lifetime parameter, found `'_`
--> $DIR/under-binder.rs:7:5
|
LL | type Opaque<'a> = impl Sized + 'a;
| -- this generic parameter must be used with a generic lifetime parameter
...
LL | f
| ^
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0792`.
|