diff --git a/src/path.rs b/src/path.rs index a3ab890284..de8965241e 100644 --- a/src/path.rs +++ b/src/path.rs @@ -697,6 +697,9 @@ pub(crate) mod printing { #[cfg(feature = "full")] Expr::Block(_) => expr.to_tokens(tokens), + #[cfg(not(feature = "full"))] + Expr::Verbatim(_) => expr.to_tokens(tokens), + // ERROR CORRECTION: Add braces to make sure that the // generated code is valid. _ => token::Brace::default().surround(tokens, |tokens| {