diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2013-09-27 21:01:58 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2013-09-30 23:21:19 -0700 |
| commit | af3b132285bc9314d545cae2e4eaef079a26252a (patch) | |
| tree | 1c7116cb4d82388a6eb3da6e4088448ea24016ba /src/libsyntax/parse/mod.rs | |
| parent | 7e709bfd0dac1d5bbe5c97494980731b4d477e8f (diff) | |
| download | rust-af3b132285bc9314d545cae2e4eaef079a26252a.tar.gz rust-af3b132285bc9314d545cae2e4eaef079a26252a.zip | |
syntax: Remove usage of fmt!
Diffstat (limited to 'src/libsyntax/parse/mod.rs')
| -rw-r--r-- | src/libsyntax/parse/mod.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libsyntax/parse/mod.rs b/src/libsyntax/parse/mod.rs index a492a2283e3..67bcab31956 100644 --- a/src/libsyntax/parse/mod.rs +++ b/src/libsyntax/parse/mod.rs @@ -416,18 +416,18 @@ mod test { _ => assert_eq!("wrong 4","correct") }, _ => { - error!("failing value 3: %?",first_set); + error2!("failing value 3: {:?}",first_set); assert_eq!("wrong 3","correct") } }, _ => { - error!("failing value 2: %?",delim_elts); + error2!("failing value 2: {:?}",delim_elts); assert_eq!("wrong","correct"); } }, _ => { - error!("failing value: %?",tts); + error2!("failing value: {:?}",tts); assert_eq!("wrong 1","correct"); } } |
