diff options
| author | bors <bors@rust-lang.org> | 2021-06-01 23:02:52 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2021-06-01 23:02:52 +0000 |
| commit | 153f22a90699d7af1a129e34b8a46eaec247f641 (patch) | |
| tree | 0b67700aa0cd56ef47afc42ab729ccf1e0d235dd /src/test/incremental/struct_remove_field.rs | |
| parent | 625d5a693e4697bcafdd34fd1a38c281acabb8e9 (diff) | |
| parent | fc069d3241bae47273c969c34fa2d95113dc0b0d (diff) | |
| download | rust-153f22a90699d7af1a129e34b8a46eaec247f641.tar.gz rust-153f22a90699d7af1a129e34b8a46eaec247f641.zip | |
Auto merge of #85331 - cjgillot:dirty-dancing, r=Aaron1011
Make rustc_dirty/clean annotations exhaustive by default Fixes #45009
Diffstat (limited to 'src/test/incremental/struct_remove_field.rs')
| -rw-r--r-- | src/test/incremental/struct_remove_field.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/incremental/struct_remove_field.rs b/src/test/incremental/struct_remove_field.rs index f6017b1b1c3..b97a87e0962 100644 --- a/src/test/incremental/struct_remove_field.rs +++ b/src/test/incremental/struct_remove_field.rs @@ -25,17 +25,17 @@ pub struct Y { pub y: char } -#[rustc_dirty(label="typeck", cfg="rpass2")] +#[rustc_clean(except="typeck,fn_sig", cfg="rpass2")] pub fn use_X(x: X) -> u32 { x.x as u32 } -#[rustc_dirty(label="typeck", cfg="rpass2")] +#[rustc_clean(except="typeck", cfg="rpass2")] pub fn use_EmbedX(embed: EmbedX) -> u32 { embed.x.x as u32 } -#[rustc_clean(label="typeck", cfg="rpass2")] +#[rustc_clean(cfg="rpass2")] pub fn use_Y() { let x: Y = Y { y: 'c' }; } |
