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

13 lines
375 B
Plaintext
Raw Normal View History

error[E0276]: impl has stricter requirements than trait
2018-12-25 09:56:47 -06:00
--> $DIR/region-extra.rs:9:5
|
2018-02-22 18:42:32 -06:00
LL | fn foo();
| --------- definition of `foo` from trait
...
2019-03-09 06:03:44 -06:00
LL | fn foo() where 'a: 'b { }
| ^^^^^^^^^^^^^^^^^^^^^ impl has extra requirement `'a: 'b`
error: aborting due to previous error
2018-03-03 08:59:40 -06:00
For more information about this error, try `rustc --explain E0276`.