File tree 2 files changed +3
-4
lines changed
2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,6 @@ mod z {
48
48
#[ rustc_dirty( label="TransCrateItem" , cfg="cfail2" ) ]
49
49
pub fn z ( ) {
50
50
//[cfail2]~^ ERROR `TypeckItemBody("z::z")` found in dep graph, but should be dirty
51
- // FIXME(#32014) -- TransCrateItem ought to be clean, but it is in fact
52
- // dirty, hence we don't see an error here.
51
+ //[cfail2]~| ERROR `TransCrateItem("z::z")` found in dep graph, but should be dirty
53
52
}
54
53
}
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ mod y {
41
41
use x;
42
42
43
43
#[ rustc_clean( label="TypeckItemBody" , cfg="rpass2" ) ]
44
- #[ rustc_dirty ( label="TransCrateItem" , cfg="rpass2" ) ]
44
+ #[ rustc_clean ( label="TransCrateItem" , cfg="rpass2" ) ]
45
45
pub fn y ( ) {
46
46
x:: x ( ) ;
47
47
}
@@ -51,7 +51,7 @@ mod z {
51
51
use y;
52
52
53
53
#[ rustc_clean( label="TypeckItemBody" , cfg="rpass2" ) ]
54
- #[ rustc_dirty ( label="TransCrateItem" , cfg="rpass2" ) ]
54
+ #[ rustc_clean ( label="TransCrateItem" , cfg="rpass2" ) ]
55
55
pub fn z ( ) {
56
56
y:: y ( ) ;
57
57
}
You can’t perform that action at this time.
0 commit comments