blob: a366fe7467668d2ca2151d63481aa2323f0a682c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
error[E0276]: impl has stricter requirements than trait
--> $DIR/region-extra.rs:19:5
|
LL | fn foo();
| --------- definition of `foo` from trait
...
LL | fn foo() where 'a: 'b { } //~ ERROR impl has stricter
| ^^^^^^^^^^^^^^^^^^^^^ impl has extra requirement `'a: 'b`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0276`.
|