aboutsummaryrefslogtreecommitdiff
path: root/xtask/src/ast_src.rs
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2020-04-10 16:48:21 +0100
committerGitHub <[email protected]>2020-04-10 16:48:21 +0100
commitf553162c4eee2c99e27de7e7351d8a3681601b1d (patch)
tree2267fb0aa4f15d900d7ce8c6bcc4ef976aac8084 /xtask/src/ast_src.rs
parentfcd609862b8d5b0567bb74895ef75b02912a375d (diff)
parentc476742f47dd905fa366e62f480e3f656c62e66c (diff)
Merge #3928
3928: Simplify r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'xtask/src/ast_src.rs')
-rw-r--r--xtask/src/ast_src.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/xtask/src/ast_src.rs b/xtask/src/ast_src.rs
index 8c0b5f5a8..69cba9168 100644
--- a/xtask/src/ast_src.rs
+++ b/xtask/src/ast_src.rs
@@ -568,7 +568,7 @@ pub(crate) const AST_SRC: AstSrc = AstSrc {
568 params: [Param], 568 params: [Param],
569 T![')'] 569 T![')']
570 } 570 }
571 struct SelfParam: TypeAscriptionOwner, AttrsOwner { T![&], T![lifetime], T![self] } 571 struct SelfParam: TypeAscriptionOwner, AttrsOwner { T![&], T![mut], T![lifetime], T![self] }
572 struct Param: TypeAscriptionOwner, AttrsOwner { 572 struct Param: TypeAscriptionOwner, AttrsOwner {
573 Pat, 573 Pat,
574 T![...] 574 T![...]