]> 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 2d65e0aa657a6690cb271f42b564c1ab39d58dbb..e4d8c56752c7889335fc004caa008543f39099ae 100644 (file)
@@ -1,13 +1,3 @@
-// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
-// file at the top-level directory of this distribution and at
-// http://rust-lang.org/COPYRIGHT.
-//
-// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
-// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
-// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
-// option. This file may not be copied, modified, or distributed
-// except according to those terms.
-
 // revisions: rpass1 rpass2
 // compile-flags: -Z query-dep-graph
 
@@ -31,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();
     }
@@ -40,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();
     }