]> git.proxmox.com Git - rustc.git/blobdiff - src/test/incremental/struct_remove_field.rs
New upstream version 1.35.0+dfsg1
[rustc.git] / src / test / incremental / struct_remove_field.rs
index 572a2c640e6d2f53f559c19b6b568445577b9fcb..4c4028bbe5bdda2ea14ef79f1ce0344f5d9202e6 100644 (file)
@@ -25,17 +25,17 @@ pub struct Y {
     pub y: char
 }
 
-#[rustc_dirty(label="TypeckTables", cfg="rpass2")]
+#[rustc_dirty(label="typeck_tables_of", cfg="rpass2")]
 pub fn use_X(x: X) -> u32 {
     x.x as u32
 }
 
-#[rustc_dirty(label="TypeckTables", cfg="rpass2")]
+#[rustc_dirty(label="typeck_tables_of", cfg="rpass2")]
 pub fn use_EmbedX(embed: EmbedX) -> u32 {
     embed.x.x as u32
 }
 
-#[rustc_clean(label="TypeckTables", cfg="rpass2")]
+#[rustc_clean(label="typeck_tables_of", cfg="rpass2")]
 pub fn use_Y() {
     let x: Y = Y { y: 'c' };
 }