diff options
| author | Graydon Hoare <graydon@mozilla.com> | 2012-02-03 17:39:39 -0800 |
|---|---|---|
| committer | Kevin Atkinson <kevina@cs.utah.edu> | 2012-02-03 20:54:18 -0700 |
| commit | 8fc624bc08df5cbb2a507231fe2c91cc56647ac0 (patch) | |
| tree | 51c0507ffde37aabd18b875e5f781571b9c8b582 /src/test/pretty | |
| parent | dbb13883f79cc4a1d232bd3fa97f0da0b58872bd (diff) | |
| download | rust-8fc624bc08df5cbb2a507231fe2c91cc56647ac0.tar.gz rust-8fc624bc08df5cbb2a507231fe2c91cc56647ac0.zip | |
Fix various drift issues in the qq branch.
Diffstat (limited to 'src/test/pretty')
| -rw-r--r-- | src/test/pretty/record-trailing-comma.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/pretty/record-trailing-comma.rs b/src/test/pretty/record-trailing-comma.rs index a60d72988e6..d603c1d8e57 100644 --- a/src/test/pretty/record-trailing-comma.rs +++ b/src/test/pretty/record-trailing-comma.rs @@ -4,5 +4,5 @@ type thing = {x: int, y: int,}; fn main() { let sth = {x: 0, y: 1,}; let sth2 = {y: 9 with sth}; - assert (sth.x + sth2.y == 9); + assert sth.x + sth2.y == 9; } |
