about summary refs log tree commit diff
path: root/src/test/run-pass/issue-4016.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-pass/issue-4016.rs')
-rw-r--r--src/test/run-pass/issue-4016.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/test/run-pass/issue-4016.rs b/src/test/run-pass/issue-4016.rs
index c1f40d302c8..87a52de2269 100644
--- a/src/test/run-pass/issue-4016.rs
+++ b/src/test/run-pass/issue-4016.rs
@@ -9,10 +9,13 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
+// xfail-fast
+
 extern mod extra;
+extern mod serialize;
 
 use extra::json;
-use extra::serialize::Decodable;
+use serialize::Decodable;
 
 trait JD : Decodable<json::Decoder> { }