]> 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 5873e7c74602861147948bcf8b7ec732fdec70e8..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 std::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");
     }
 }