rollup merge of #18568 : gamazeps/issue18551
This commit is contained in:
commit
a779e89a00
1 changed files with 1 additions and 1 deletions
|
@ -385,7 +385,7 @@ pub enum Pat_ {
|
||||||
PatLit(P<Expr>),
|
PatLit(P<Expr>),
|
||||||
PatRange(P<Expr>, P<Expr>),
|
PatRange(P<Expr>, P<Expr>),
|
||||||
/// [a, b, ..i, y, z] is represented as:
|
/// [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>>),
|
PatVec(Vec<P<Pat>>, Option<P<Pat>>, Vec<P<Pat>>),
|
||||||
PatMac(Mac),
|
PatMac(Mac),
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue