syntax: Remove usage of fmt!

This commit is contained in:
Alex Crichton
2013-09-27 21:01:58 -07:00
parent 7e709bfd0d
commit af3b132285
34 changed files with 342 additions and 342 deletions

View File

@@ -47,8 +47,8 @@ impl Eq for Ident {
// if it should be non-hygienic (most things are), just compare the
// 'name' fields of the idents. Or, even better, replace the idents
// with Name's.
fail!(fmt!("not allowed to compare these idents: %?, %?. Probably \
related to issue #6993", self, other));
fail2!("not allowed to compare these idents: {:?}, {:?}.
Probably related to issue \\#6993", self, other);
}
}
fn ne(&self, other: &Ident) -> bool {