]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/core-rt-smoke.rs
rustc: Temporarily inject libgreen with librustuv
[rust.git] / src / test / run-pass / core-rt-smoke.rs
index 3a0b4b6d40da9fc43be27663a6aac23068bcdacd..6e3d9629da043b88befd8963236c86181a63171b 100644 (file)
@@ -13,8 +13,8 @@
 // A simple test of starting the runtime manually
 
 #[start]
-fn start(argc: int, argv: **u8, crate_map: *u8) -> int {
-    do core::rt::start(argc, argv, crate_map) {
-        debug!("creating my own runtime is joy");
+fn start(argc: int, argv: **u8) -> int {
+    do std::rt::start(argc, argv) {
+        info!("creating my own runtime is joy");
     }
-}
\ No newline at end of file
+}