Close parentheses for offset_of
in AST pretty printing
HIR pretty printing already handles it correctly.
This commit is contained in:
parent
f2eb9f85b9
commit
0dbea7ad54
@ -566,7 +566,7 @@ pub(super) fn print_expr_outer_attr_style(&mut self, expr: &ast::Expr, is_inline
|
|||||||
self.print_ident(field);
|
self.print_ident(field);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
self.pclose();
|
||||||
self.end();
|
self.end();
|
||||||
}
|
}
|
||||||
ast::ExprKind::MacCall(m) => self.print_mac(m),
|
ast::ExprKind::MacCall(m) => self.print_mac(m),
|
||||||
|
4
tests/pretty/offset_of.rs
Normal file
4
tests/pretty/offset_of.rs
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
// pp-exact
|
||||||
|
#![feature(offset_of)]
|
||||||
|
|
||||||
|
fn main() { std::mem::offset_of!(std :: ops :: Range < usize >, end); }
|
Loading…
Reference in New Issue
Block a user