diff options
| author | bors <bors@rust-lang.org> | 2014-01-16 20:56:45 -0800 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-01-16 20:56:45 -0800 |
| commit | 5fdc81262a5d44f10e335384b5d69b938d6d729c (patch) | |
| tree | 164cd2c9f73ba67261af1f3f172ab7b131758d08 /src/libsyntax/parse | |
| parent | 58a15f3d5a2213d37bbf653e4562c36a130f14ee (diff) | |
| parent | b33d2fede8ecebf3771fbe6863ec2220f507613c (diff) | |
| download | rust-5fdc81262a5d44f10e335384b5d69b938d6d729c.tar.gz rust-5fdc81262a5d44f10e335384b5d69b938d6d729c.zip | |
auto merge of #11553 : klutzy/rust/rustc-cleanups, r=alexcrichton
Diffstat (limited to 'src/libsyntax/parse')
| -rw-r--r-- | src/libsyntax/parse/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/parse/mod.rs b/src/libsyntax/parse/mod.rs index c278fb2fc51..78328efdd0b 100644 --- a/src/libsyntax/parse/mod.rs +++ b/src/libsyntax/parse/mod.rs @@ -418,7 +418,7 @@ mod test { #[test] fn string_to_tts_1 () { let tts = string_to_tts(@"fn a (b : int) { b; }"); - assert_eq!(to_json_str(@tts), + assert_eq!(to_json_str(&tts), ~"[\ {\ \"variant\":\"TTTok\",\ |
