Try to fix pretty-test breakage harder.

This commit is contained in:
Graydon Hoare 2012-08-14 04:17:45 +00:00
parent ad776421ed
commit 20d622835a

View File

@ -3,6 +3,6 @@ type thing = {x: int, y: int,};
fn main() {
let sth = {x: 0, y: 1,};
let sth2 = {y: 9 .. sth};
let sth2 = {y: 9 ..sth};
assert sth.x + sth2.y == 9;
}