Static rustc_lint::builtin::INCOMPLETE_FEATURES
source · pub static INCOMPLETE_FEATURES: &'static Lint
Expand description
The incomplete_features
lint detects unstable features enabled with
the feature
attribute that may function improperly in some or all
cases.
Example
#![feature(generic_const_exprs)]
{{produces}}
Explanation
Although it is encouraged for people to experiment with unstable features, some of them are known to be incomplete or faulty. This lint is a signal that the feature has not yet been finished, and you may experience problems with it.