Skip to content

Commit 87a7256

Browse files
committed
Unbreak run-pass/issue-2904 more
1 parent 3232e75 commit 87a7256

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/test/run-pass/issue-2904.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,8 @@ fn read_board_grid<rdr: Owned io::Reader>(+in: rdr) -> ~[~[square]] {
5252
let mut grid = ~[];
5353
for in.each_line |line| {
5454
let mut row = ~[];
55-
<<<<<<< HEAD
5655
for str::each_char(line) |c| {
57-
vec::push(row, square_from_char(c))
58-
=======
59-
for line.each_char |c| {
6056
row.push(square_from_char(c))
61-
>>>>>>> Demode vec::push (and convert to method)
6257
}
6358
grid.push(row)
6459
}

0 commit comments

Comments
 (0)