mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
12 lines
406 B
Plaintext
12 lines
406 B
Plaintext
error: implementation of `Foo` is not general enough
|
|
--> $DIR/due-to-where-clause.rs:2:5
|
|
|
|
|
LL | test::<FooS>(&mut 42);
|
|
| ^^^^^^^^^^^^ implementation of `Foo` is not general enough
|
|
|
|
|
= note: `FooS<'_>` must implement `Foo<'0>`, for any lifetime `'0`...
|
|
= note: ...but `FooS<'_>` actually implements `Foo<'1>`, for some specific lifetime `'1`
|
|
|
|
error: aborting due to previous error
|
|
|