about summary refs log tree commit diff
path: root/src/test/incremental/struct_add_field.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2021-06-01 23:02:52 +0000
committerbors <bors@rust-lang.org>2021-06-01 23:02:52 +0000
commit153f22a90699d7af1a129e34b8a46eaec247f641 (patch)
tree0b67700aa0cd56ef47afc42ab729ccf1e0d235dd /src/test/incremental/struct_add_field.rs
parent625d5a693e4697bcafdd34fd1a38c281acabb8e9 (diff)
parentfc069d3241bae47273c969c34fa2d95113dc0b0d (diff)
downloadrust-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_add_field.rs')
-rw-r--r--src/test/incremental/struct_add_field.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/test/incremental/struct_add_field.rs b/src/test/incremental/struct_add_field.rs
index 4c29f196f67..720854f1605 100644
--- a/src/test/incremental/struct_add_field.rs
+++ b/src/test/incremental/struct_add_field.rs
@@ -21,17 +21,17 @@ pub struct Y {
     pub y: char
 }
 
-#[rustc_dirty(label="typeck", cfg="rpass2")]
+#[rustc_clean(except="fn_sig,typeck", 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' };
 }