1
Fork 0

Add token::Err

This commit is contained in:
Yuki Okushi 2019-01-18 05:23:56 +09:00
parent 7e2e61c618
commit 8bbb63c600

View file

@ -296,7 +296,7 @@ impl<'a> Classifier<'a> {
token::Literal(lit, _suf) => {
match lit {
// Text literals.
token::Byte(..) | token::Char(..) |
token::Byte(..) | token::Char(..) | token::Err(..) |
token::ByteStr(..) | token::ByteStrRaw(..) |
token::Str_(..) | token::StrRaw(..) => Class::String,