rust/src/test/ui/compare-method/region-unrelated.stderr

12 lines
337 B
Plaintext
Raw Normal View History

error[E0276]: impl has stricter requirements than trait
--> $DIR/region-unrelated.rs:21:5
|
16 | fn foo() where T: 'a;
| --------------------- definition of `foo` from trait
...
21 | fn foo() where V: 'a { }
| ^^^^^^^^^^^^^^^^^^^^^^^^ impl has extra requirement `V: 'a`
error: aborting due to previous error