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 641b198 commit b865c1fCopy full SHA for b865c1f
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