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 d757cf4 commit a4fc6b1Copy full SHA for a4fc6b1
src/path.rs
@@ -697,6 +697,9 @@ pub(crate) mod printing {
697
#[cfg(feature = "full")]
698
Expr::Block(_) => expr.to_tokens(tokens),
699
700
+ #[cfg(not(feature = "full"))]
701
+ Expr::Verbatim(_) => expr.to_tokens(tokens),
702
+
703
// ERROR CORRECTION: Add braces to make sure that the
704
// generated code is valid.
705
_ => token::Brace::default().surround(tokens, |tokens| {
0 commit comments