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 24c48cd commit e523c36Copy full SHA for e523c36
src/path.rs
@@ -692,13 +692,13 @@ pub(crate) mod printing {
692
GenericArgument::Lifetime(lt) => lt.to_tokens(tokens),
693
GenericArgument::Type(ty) => ty.to_tokens(tokens),
694
GenericArgument::Const(expr) => match expr {
695
- Expr::Lit(_) => expr.to_tokens(tokens),
+ Expr::Lit(expr) => expr.to_tokens(tokens),
696
697
#[cfg(feature = "full")]
698
- Expr::Block(_) => expr.to_tokens(tokens),
+ Expr::Block(expr) => expr.to_tokens(tokens),
699
700
#[cfg(not(feature = "full"))]
701
- Expr::Verbatim(_) => expr.to_tokens(tokens),
+ Expr::Verbatim(expr) => expr.to_tokens(tokens),
702
703
// ERROR CORRECTION: Add braces to make sure that the
704
// generated code is valid.
0 commit comments