We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e28575 commit f0d7280Copy full SHA for f0d7280
compiler/rustc_lint/src/context.rs
@@ -221,6 +221,9 @@ impl LintStore {
221
.lint_ids
222
.push(id);
223
} else {
224
+ // Lints belonging to the `future_incompatible` lint group are lints where a
225
+ // future version of rustc will cause existing code to stop compiling.
226
+ // Lints tied to an edition don't count because they are opt-in.
227
self.lint_groups
228
.entry("future_incompatible")
229
.or_insert(LintGroup {
0 commit comments