Fix invalid lint_node_id being put on a removed stmt

This commit is contained in:
Loïc BRANSTETT 2022-03-03 11:52:09 +01:00
parent 2f8d1a835b
commit 516488484e
3 changed files with 22 additions and 2 deletions

View file

@ -0,0 +1,10 @@
// This test checks that there is no ICE with this code
//
// check-pass
// compile-flags:--check-cfg=names() -Z unstable-options
fn main() {
#[cfg(crossbeam_loom)]
//~^ WARNING unexpected `cfg` condition name
{}
}

View file

@ -0,0 +1,10 @@
warning: unexpected `cfg` condition name
--> $DIR/stmt-no-ice.rs:7:11
|
LL | #[cfg(crossbeam_loom)]
| ^^^^^^^^^^^^^^
|
= note: `#[warn(unexpected_cfgs)]` on by default
warning: 1 warning emitted