We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37443eb commit d974a0bCopy full SHA for d974a0b
crates/hir-expand/src/builtin_fn_macro.rs
@@ -440,7 +440,7 @@ fn concat_bytes_expand(
440
.into_iter()
441
.for_each(|x| bytes.push(x.to_string()));
442
}
443
- ast::LiteralKind::Byte => {
+ ast::LiteralKind::Byte(_) => {
444
bytes.push(lit.to_string());
445
446
_ => {
@@ -477,7 +477,7 @@ fn concat_bytes_expand_subtree(
477
tt::TokenTree::Leaf(tt::Leaf::Literal(lit)) => {
478
let lit = ast::make::literal(&lit.to_string());
479
match lit.kind() {
480
- ast::LiteralKind::IntNumber(_) | ast::LiteralKind::Byte => {
+ ast::LiteralKind::IntNumber(_) | ast::LiteralKind::Byte(_) => {
481
482
483
0 commit comments