Error code E0711
This error code is internal to the compiler and will not be emitted with normal Rust code.
Feature declared with conflicting stability requirements.
ⓘ
In the above example, the foo
feature is first defined to be stable since
1.0.0, but is then re-declared stable since 1.29.0. This discrepancy in
versions causes an error. Furthermore, foo
is then re-declared as unstable,
again the conflict causes an error.
This error can be fixed by splitting the feature, this allows any stability requirements and removes any possibility of conflict.