about summary refs log tree commit diff
path: root/src/test/incremental/change_private_fn
diff options
context:
space:
mode:
authorNiko Matsakis <niko@alum.mit.edu>2017-01-25 16:24:00 -0500
committerNiko Matsakis <niko@alum.mit.edu>2017-01-25 16:24:00 -0500
commit282f7a3c44a428c26155b4686ad95e802fcd4158 (patch)
treecc2547f426c32de8fbfd959c8226c397c48f36f7 /src/test/incremental/change_private_fn
parent80b5f98d038346f9d4283b19fb117534d289e60f (diff)
downloadrust-282f7a3c44a428c26155b4686ad95e802fcd4158.tar.gz
rust-282f7a3c44a428c26155b4686ad95e802fcd4158.zip
rename `Tables` to `TypeckTables`
Diffstat (limited to 'src/test/incremental/change_private_fn')
-rw-r--r--src/test/incremental/change_private_fn/struct_point.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/test/incremental/change_private_fn/struct_point.rs b/src/test/incremental/change_private_fn/struct_point.rs
index 4b1b3ede47d..abfd55ba52c 100644
--- a/src/test/incremental/change_private_fn/struct_point.rs
+++ b/src/test/incremental/change_private_fn/struct_point.rs
@@ -59,7 +59,7 @@ mod point {
 mod fn_calls_methods_in_same_impl {
     use point::Point;
 
-    #[rustc_clean(label="Tables", cfg="rpass2")]
+    #[rustc_clean(label="TypeckTables", cfg="rpass2")]
     pub fn check() {
         let x = Point { x: 2.0, y: 2.0 };
         x.distance_from_origin();
@@ -70,7 +70,7 @@ mod fn_calls_methods_in_same_impl {
 mod fn_calls_methods_in_another_impl {
     use point::Point;
 
-    #[rustc_clean(label="Tables", cfg="rpass2")]
+    #[rustc_clean(label="TypeckTables", cfg="rpass2")]
     pub fn check() {
         let mut x = Point { x: 2.0, y: 2.0 };
         x.translate(3.0, 3.0);
@@ -81,7 +81,7 @@ mod fn_calls_methods_in_another_impl {
 mod fn_make_struct {
     use point::Point;
 
-    #[rustc_clean(label="Tables", cfg="rpass2")]
+    #[rustc_clean(label="TypeckTables", cfg="rpass2")]
     pub fn make_origin() -> Point {
         Point { x: 2.0, y: 2.0 }
     }
@@ -91,7 +91,7 @@ mod fn_make_struct {
 mod fn_read_field {
     use point::Point;
 
-    #[rustc_clean(label="Tables", cfg="rpass2")]
+    #[rustc_clean(label="TypeckTables", cfg="rpass2")]
     pub fn get_x(p: Point) -> f32 {
         p.x
     }
@@ -101,7 +101,7 @@ mod fn_read_field {
 mod fn_write_field {
     use point::Point;
 
-    #[rustc_clean(label="Tables", cfg="rpass2")]
+    #[rustc_clean(label="TypeckTables", cfg="rpass2")]
     pub fn inc_x(p: &mut Point) {
         p.x += 1.0;
     }