1
Fork 0

Auto merge of #76170 - matklad:notrivia, r=petrochenkov

Remove trivia tokens

r? @ghost
This commit is contained in:
bors 2020-09-02 03:19:38 +00:00
commit b4acb11033
7 changed files with 72 additions and 112 deletions

View file

@ -189,7 +189,7 @@ impl FromInternal<(TreeAndJoint, &'_ ParseSess, &'_ mut Vec<Self>)>
}
OpenDelim(..) | CloseDelim(..) => unreachable!(),
Whitespace | Comment | Shebang(..) | Unknown(..) | Eof => unreachable!(),
Eof => unreachable!(),
}
}
}