]> git.lizzy.rs Git - rust.git/blobdiff - src/test/incremental/hello_world.rs
Merge pull request #2 from rust-lang/master
[rust.git] / src / test / incremental / hello_world.rs
index e2e15eb958f981b77412b0b911ae1161ecd096bc..e4d8c56752c7889335fc004caa008543f39099ae 100644 (file)
@@ -21,7 +21,7 @@ pub fn xxxx() -> i32 {
 mod y {
     use x;
 
-    #[rustc_clean(label="TypeckTables", cfg="rpass2")]
+    #[rustc_clean(label="typeck_tables_of", cfg="rpass2")]
     pub fn yyyy() {
         x::xxxx();
     }
@@ -30,7 +30,7 @@ pub fn yyyy() {
 mod z {
     use y;
 
-    #[rustc_clean(label="TypeckTables", cfg="rpass2")]
+    #[rustc_clean(label="typeck_tables_of", cfg="rpass2")]
     pub fn z() {
         y::yyyy();
     }