auto merge of #9665 : alexcrichton/rust/snapshot, r=brson
Uses the new snapshots to kill the old `loop` and introduce the new `continue`.
This commit is contained in:
@@ -1068,12 +1068,12 @@ mod test {
|
||||
Mark(mrk,tail) => {
|
||||
result.push(M(mrk));
|
||||
sc = tail;
|
||||
loop;
|
||||
continue;
|
||||
},
|
||||
Rename(id,name,tail) => {
|
||||
result.push(R(id,name));
|
||||
sc = tail;
|
||||
loop;
|
||||
continue;
|
||||
}
|
||||
IllegalCtxt => fail2!("expected resolvable context, got IllegalCtxt")
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user