@@ -70,7 +70,7 @@ pub mod point {
7070pub mod fn_with_type_in_sig {
7171 use point:: Point ;
7272
73- #[ rustc_dirty( label="TypeckTables " , cfg="cfail2" ) ]
73+ #[ rustc_dirty( label="typeck_tables_of " , cfg="cfail2" ) ]
7474 pub fn boop ( p : Option < & Point > ) -> f32 {
7575 p. map ( |p| p. total ( ) ) . unwrap_or ( 0.0 )
7676 }
@@ -86,7 +86,7 @@ pub mod fn_with_type_in_sig {
8686pub mod call_fn_with_type_in_sig {
8787 use fn_with_type_in_sig;
8888
89- #[ rustc_dirty( label="TypeckTables " , cfg="cfail2" ) ]
89+ #[ rustc_dirty( label="typeck_tables_of " , cfg="cfail2" ) ]
9090 pub fn bip ( ) -> f32 {
9191 fn_with_type_in_sig:: boop ( None )
9292 }
@@ -102,7 +102,7 @@ pub mod call_fn_with_type_in_sig {
102102pub mod fn_with_type_in_body {
103103 use point:: Point ;
104104
105- #[ rustc_dirty( label="TypeckTables " , cfg="cfail2" ) ]
105+ #[ rustc_dirty( label="typeck_tables_of " , cfg="cfail2" ) ]
106106 pub fn boop ( ) -> f32 {
107107 Point :: origin ( ) . total ( )
108108 }
@@ -115,7 +115,7 @@ pub mod fn_with_type_in_body {
115115pub mod call_fn_with_type_in_body {
116116 use fn_with_type_in_body;
117117
118- #[ rustc_clean( label="TypeckTables " , cfg="cfail2" ) ]
118+ #[ rustc_clean( label="typeck_tables_of " , cfg="cfail2" ) ]
119119 pub fn bip ( ) -> f32 {
120120 fn_with_type_in_body:: boop ( )
121121 }
@@ -125,7 +125,7 @@ pub mod call_fn_with_type_in_body {
125125pub mod fn_make_struct {
126126 use point:: Point ;
127127
128- #[ rustc_dirty( label="TypeckTables " , cfg="cfail2" ) ]
128+ #[ rustc_dirty( label="typeck_tables_of " , cfg="cfail2" ) ]
129129 pub fn make_origin ( p : Point ) -> Point {
130130 Point { ..p }
131131 }
@@ -135,7 +135,7 @@ pub mod fn_make_struct {
135135pub mod fn_read_field {
136136 use point:: Point ;
137137
138- #[ rustc_dirty( label="TypeckTables " , cfg="cfail2" ) ]
138+ #[ rustc_dirty( label="typeck_tables_of " , cfg="cfail2" ) ]
139139 pub fn get_x ( p : Point ) -> f32 {
140140 p. x
141141 }
@@ -145,7 +145,7 @@ pub mod fn_read_field {
145145pub mod fn_write_field {
146146 use point:: Point ;
147147
148- #[ rustc_dirty( label="TypeckTables " , cfg="cfail2" ) ]
148+ #[ rustc_dirty( label="typeck_tables_of " , cfg="cfail2" ) ]
149149 pub fn inc_x ( p : & mut Point ) {
150150 p. x += 1.0 ;
151151 }
0 commit comments