rollup merge of #18568 : gamazeps/issue18551

This commit is contained in:
Alex Crichton 2014-11-03 15:29:55 -08:00
commit a779e89a00

View File

@ -385,7 +385,7 @@ pub enum Pat_ {
PatLit(P<Expr>),
PatRange(P<Expr>, P<Expr>),
/// [a, b, ..i, y, z] is represented as:
/// PatVec(~[a, b], Some(i), ~[y, z])
/// PatVec(box [a, b], Some(i), box [y, z])
PatVec(Vec<P<Pat>>, Option<P<Pat>>, Vec<P<Pat>>),
PatMac(Mac),
}