mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-23 05:03:21 +00:00
This commit is contained in:
parent
9c85b02f78
commit
a316179850
2 changed files with 5 additions and 5 deletions
|
@ -274,10 +274,10 @@ fn check_tts<'a>(cx: &EarlyContext<'a>, tts: &TokenStream, is_write: bool) -> (O
|
|||
let mut is_raw = false;
|
||||
if let TokenStream(Some(tokens)) = &tts {
|
||||
for token in tokens.iter() {
|
||||
if let (TokenTree::Token(_, token::Token::Literal(lit, _)), _) = token {
|
||||
match lit {
|
||||
token::Lit::Str_(_) => break,
|
||||
token::Lit::StrRaw(_, _) => {
|
||||
if let (TokenTree::Token(_, token::Token::Literal(lit)), _) = token {
|
||||
match lit.kind {
|
||||
token::Str => break,
|
||||
token::StrRaw(_) => {
|
||||
is_raw = true;
|
||||
break;
|
||||
},
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
error: invalid suffix `x` for numeric literal
|
||||
error: invalid suffix `x` for integer literal
|
||||
--> $DIR/ice-3891.rs:2:5
|
||||
|
|
||||
LL | 1x;
|
||||
|
|
Loading…
Reference in a new issue