Change syntax extension syntax: #m[...] -> m!{...}.

This commit is contained in:
Paul Stansifer
2012-07-30 16:01:07 -07:00
parent 650fb06d68
commit a9cc5066ee
365 changed files with 2760 additions and 2759 deletions

View File

@@ -327,7 +327,7 @@ mod tests {
let ra = rand::seeded_rng(seed);
// Regression test that isaac is actually using the above vector
let r = ra.next();
#error("%?", r);
error!{"%?", r};
assert r == 890007737u32 // on x86_64
|| r == 2935188040u32; // on x86
}