syntax: Remove usage of fmt!
This commit is contained in:
parent
7e709bfd0d
commit
af3b132285
34 changed files with 342 additions and 342 deletions
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue