Skip to content

Commit 6478d9e

Browse files
committed
Handle safety keyword for extern block inner items
1 parent a2c6f80 commit 6478d9e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/utils.rs

+1
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ pub(crate) fn format_defaultness(defaultness: ast::Defaultness) -> &'static str
111111
pub(crate) fn format_safety(unsafety: ast::Safety) -> &'static str {
112112
match unsafety {
113113
ast::Safety::Unsafe(..) => "unsafe ",
114+
ast::Safety::Safe(..) => "safe ",
114115
ast::Safety::Default => "",
115116
}
116117
}

0 commit comments

Comments
 (0)