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 09abbbd + b865c1f commit 7ea660eCopy full SHA for 7ea660e
src/librustc/front/show_span.rs
@@ -28,6 +28,10 @@ impl<'a> Visitor<()> for ShowSpanVisitor<'a> {
28
self.sess.span_note(e.span, "expression");
29
visit::walk_expr(self, e, ());
30
}
31
+
32
+ fn visit_mac(&mut self, macro: &ast::Mac, e: ()) {
33
+ visit::walk_mac(self, macro, e);
34
+ }
35
36
37
pub fn run(sess: &Session, krate: &ast::Crate) {
0 commit comments