]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/cci_impl_exe.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[rust.git] / src / test / run-pass / cci_impl_exe.rs
index e5e1736044c5db738765f58b443ac6d0f3e307d1..8a291febb6d458e3db08311ea3e8fae8ad655a25 100644 (file)
@@ -8,7 +8,6 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-// ignore-fast - check-fast doesn't understand aux-build
 // aux-build:cci_impl_lib.rs
 
 extern crate cci_impl_lib;
 
 pub fn main() {
     //let bt0 = sys::frame_address();
-    //info!("%?", bt0);
+    //println!("%?", bt0);
 
     3u.to(10u, |i| {
         println!("{}", i);
 
         //let bt1 = sys::frame_address();
-        //info!("%?", bt1);
+        //println!("%?", bt1);
         //assert!(bt0 == bt1);
     })
 }