Print safety correctly in extern static items
This commit is contained in:
parent
4f2f477fde
commit
4e1b3ab0e7
@ -38,7 +38,6 @@ fn print_foreign_item(&mut self, item: &ast::ForeignItem) {
|
||||
self.print_fn_full(sig, ident, generics, vis, *defaultness, body.as_deref(), attrs);
|
||||
}
|
||||
ast::ForeignItemKind::Static(box ast::StaticItem { ty, mutability, expr, safety }) => {
|
||||
self.print_safety(*safety);
|
||||
self.print_item_const(
|
||||
ident,
|
||||
Some(*mutability),
|
||||
@ -46,6 +45,7 @@ fn print_foreign_item(&mut self, item: &ast::ForeignItem) {
|
||||
ty,
|
||||
expr.as_deref(),
|
||||
vis,
|
||||
*safety,
|
||||
ast::Defaultness::Final,
|
||||
)
|
||||
}
|
||||
@ -84,10 +84,12 @@ fn print_item_const(
|
||||
ty: &ast::Ty,
|
||||
body: Option<&ast::Expr>,
|
||||
vis: &ast::Visibility,
|
||||
safety: ast::Safety,
|
||||
defaultness: ast::Defaultness,
|
||||
) {
|
||||
self.head("");
|
||||
self.print_visibility(vis);
|
||||
self.print_safety(safety);
|
||||
self.print_defaultness(defaultness);
|
||||
let leading = match mutbl {
|
||||
None => "const",
|
||||
@ -181,6 +183,7 @@ pub(crate) fn print_item(&mut self, item: &ast::Item) {
|
||||
ty,
|
||||
body.as_deref(),
|
||||
&item.vis,
|
||||
ast::Safety::Default,
|
||||
ast::Defaultness::Final,
|
||||
);
|
||||
}
|
||||
@ -192,6 +195,7 @@ pub(crate) fn print_item(&mut self, item: &ast::Item) {
|
||||
ty,
|
||||
expr.as_deref(),
|
||||
&item.vis,
|
||||
ast::Safety::Default,
|
||||
*defaultness,
|
||||
);
|
||||
}
|
||||
@ -549,6 +553,7 @@ fn print_assoc_item(&mut self, item: &ast::AssocItem) {
|
||||
ty,
|
||||
expr.as_deref(),
|
||||
vis,
|
||||
ast::Safety::Default,
|
||||
*defaultness,
|
||||
);
|
||||
}
|
||||
|
6
tests/ui/unpretty/extern-static.rs
Normal file
6
tests/ui/unpretty/extern-static.rs
Normal file
@ -0,0 +1,6 @@
|
||||
//@ compile-flags: -Zunpretty=normal
|
||||
//@ check-pass
|
||||
|
||||
unsafe extern "C" {
|
||||
pub unsafe static STATIC: ();
|
||||
}
|
6
tests/ui/unpretty/extern-static.stdout
Normal file
6
tests/ui/unpretty/extern-static.stdout
Normal file
@ -0,0 +1,6 @@
|
||||
//@ compile-flags: -Zunpretty=normal
|
||||
//@ check-pass
|
||||
|
||||
unsafe extern "C" {
|
||||
pub unsafe static STATIC: ();
|
||||
}
|
Loading…
Reference in New Issue
Block a user