From 09bb07bed9166105ea961a42b5fff7739ae0d2e9 Mon Sep 17 00:00:00 2001 From: Tim Chevalier Date: Mon, 24 Dec 2012 14:07:37 -0800 Subject: [PATCH] Unfortunately, we can't embed cross-crate tests in the tutorial... ...as far as I know, anyway, so I xfailed this tutorial test. --- doc/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/tutorial.md b/doc/tutorial.md index 1add1054cc5..d20ce43c3d2 100644 --- a/doc/tutorial.md +++ b/doc/tutorial.md @@ -2419,7 +2419,7 @@ these two files: pub fn explore() -> &str { "world" } ~~~~ -~~~~ +~~~~ {.xfail-test} // main.rs extern mod world; fn main() { io::println(~"hello " + world::explore()); }