summary refs log tree commit diff
path: root/src/test
diff options
context:
space:
mode:
authorGraydon Hoare <graydon@mozilla.com>2012-08-14 04:14:41 +0000
committerGraydon Hoare <graydon@mozilla.com>2012-08-14 04:15:21 +0000
commitad776421ed96a1265cd2bd5489ca53d8f1d6fb4b (patch)
treef068b41a91aa391f3fc47b6c4faf9bbb126a14e3 /src/test
parent80b6850e34957d95b7606da01d229dc1e3e6e5b5 (diff)
downloadrust-ad776421ed96a1265cd2bd5489ca53d8f1d6fb4b.tar.gz
rust-ad776421ed96a1265cd2bd5489ca53d8f1d6fb4b.zip
Try to fix pretty-test breakage.
Diffstat (limited to 'src/test')
-rw-r--r--src/test/pretty/record-trailing-comma.rs2
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 d603c1d8e57..cfa5d1a9902 100644
--- a/src/test/pretty/record-trailing-comma.rs
+++ b/src/test/pretty/record-trailing-comma.rs
@@ -3,6 +3,6 @@ type thing = {x: int, y: int,};
 
 fn main() {
     let sth = {x: 0, y: 1,};
-    let sth2 = {y: 9 with sth};
+    let sth2 = {y: 9 .. sth};
     assert sth.x + sth2.y == 9;
 }