]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/issue-4333.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[rust.git] / src / test / run-pass / issue-4333.rs
index 86cef39abc81f5b023e25676789b57e6861d74ef..fd67b767104d502ed7a27a44f7e91f5360cc91da 100644 (file)
@@ -8,9 +8,9 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-use std::rt::io;
+use std::io;
 
 pub fn main() {
     let stdout = &mut io::stdout() as &mut io::Writer;
-    stdout.write(bytes!("Hello!"));
+    stdout.write(b"Hello!");
 }