mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
12 lines
366 B
Plaintext
12 lines
366 B
Plaintext
error: implementation of `Bar` is not general enough
|
|
--> $DIR/where-for-self-2.rs:23:5
|
|
|
|
|
LL | foo(&X);
|
|
| ^^^^^^^ implementation of `Bar` is not general enough
|
|
|
|
|
= note: `&'0 u32` must implement `Bar`, for any lifetime `'0`...
|
|
= note: ...but `Bar` is actually implemented for the type `&'static u32`
|
|
|
|
error: aborting due to 1 previous error
|
|
|