add a rustc::query_stability lint
This commit is contained in:
parent
25862ffc8d
commit
a1a30f7548
42 changed files with 302 additions and 77 deletions
|
@ -8,6 +8,7 @@
|
|||
#![feature(nll)]
|
||||
#![feature(once_cell)]
|
||||
#![recursion_limit = "256"]
|
||||
#![cfg_attr(not(bootstrap), allow(rustc::potential_query_instability))]
|
||||
|
||||
#[macro_use]
|
||||
extern crate tracing;
|
||||
|
@ -845,7 +846,7 @@ Available lint options:
|
|||
let builtin = sort_lints(sess, builtin);
|
||||
|
||||
let (plugin_groups, builtin_groups): (Vec<_>, _) =
|
||||
lint_store.get_lint_groups().iter().cloned().partition(|&(.., p)| p);
|
||||
lint_store.get_lint_groups().partition(|&(.., p)| p);
|
||||
let plugin_groups = sort_lint_groups(plugin_groups);
|
||||
let builtin_groups = sort_lint_groups(builtin_groups);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue