about summary refs log tree commit diff
path: root/src/test/incremental/struct_add_field.rs
diff options
context:
space:
mode:
authorJohn Kåre Alsaker <john.kare.alsaker@gmail.com>2019-03-29 17:05:40 +0100
committerJohn Kåre Alsaker <john.kare.alsaker@gmail.com>2019-03-30 18:43:26 +0100
commit45580684825c1855a4be5a7b4cd28525b24e7322 (patch)
treea31fcfea4d5793a1372505c0738960056db2d006 /src/test/incremental/struct_add_field.rs
parent012884419eb797b3d277580146cad5bad8e41f5d (diff)
downloadrust-45580684825c1855a4be5a7b4cd28525b24e7322.tar.gz
rust-45580684825c1855a4be5a7b4cd28525b24e7322.zip
Update tests
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 d019a3d2ab8..d2e1e7decf5 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="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' };
 }