]> git.lizzy.rs Git - rust.git/blobdiff - src/test/incremental/dirty_clean.rs
Rollup merge of #74204 - ayazhafiz:i/74120, r=eddyb
[rust.git] / src / test / incremental / dirty_clean.rs
index b9a1846b37d44ba93e948f08f0f68b33e1ec30da..2a1056df4cecacb99ed020dc81accb6029398383 100644 (file)
@@ -25,16 +25,16 @@ pub fn x() -> u32 {
 mod y {
     use x;
 
-    #[rustc_clean(label="typeck_tables_of", cfg="cfail2")]
+    #[rustc_clean(label="typeck", cfg="cfail2")]
     pub fn y() {
-        //[cfail2]~^ ERROR `typeck_tables_of(y::y)` should be clean but is not
+        //[cfail2]~^ ERROR `typeck(y::y)` should be clean but is not
         x::x();
     }
 }
 
 mod z {
-    #[rustc_dirty(label="typeck_tables_of", cfg="cfail2")]
+    #[rustc_dirty(label="typeck", cfg="cfail2")]
     pub fn z() {
-        //[cfail2]~^ ERROR `typeck_tables_of(z::z)` should be dirty but is not
+        //[cfail2]~^ ERROR `typeck(z::z)` should be dirty but is not
     }
 }