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.
2 parents 32d2385 + 26316b8 commit f6b5da7Copy full SHA for f6b5da7
src/tools/rustfmt/src/items.rs
@@ -63,6 +63,11 @@ impl Rewrite for ast::Local {
63
return Err(RewriteError::SkipFormatting);
64
}
65
66
+ // FIXME(super_let): Implement formatting
67
+ if self.super_.is_some() {
68
+ return Err(RewriteError::SkipFormatting);
69
+ }
70
+
71
let attrs_str = self.attrs.rewrite_result(context, shape)?;
72
let mut result = if attrs_str.is_empty() {
73
"let ".to_owned()
0 commit comments