Skip to content

Commit b7853ef

Browse files
authored
Rollup merge of #137769 - compiler-errors:empty-unsafe-fmt, r=ytmimi
Do not yeet `unsafe<>` from type when formatting unsafe binder Unsafe binders are types like `unsafe<'a, 'b> Ty<'a, 'b>`. However, users can also specify unsafe binder types with no bound vars, like `unsafe<> Ty`. When I added nightly formatting for unsafe binders, I didn't consider this, so on nightly we are stripping the `unsafe<>` part, which gives us back `Ty` which is a different type! This PR fixes that. r? ``@ytmimi``
2 parents 1d9992d + 5bf2237 commit b7853ef

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

src/tools/rustfmt/src/types.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -1019,7 +1019,11 @@ impl Rewrite for ast::Ty {
10191019
}
10201020
ast::TyKind::UnsafeBinder(ref binder) => {
10211021
let mut result = String::new();
1022-
if let Some(ref lifetime_str) =
1022+
if binder.generic_params.is_empty() {
1023+
// We always want to write `unsafe<>` since `unsafe<> Ty`
1024+
// and `Ty` are distinct types.
1025+
result.push_str("unsafe<> ")
1026+
} else if let Some(ref lifetime_str) =
10231027
rewrite_bound_params(context, shape, &binder.generic_params)
10241028
{
10251029
result.push_str("unsafe<");

src/tools/rustfmt/tests/source/unsafe-binders.rs

+3
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,6 @@ struct Foo {
99
struct Bar(unsafe<'a> &'a ());
1010

1111
impl Trait for unsafe<'a> &'a () {}
12+
13+
fn empty()
14+
-> unsafe<> () {}

src/tools/rustfmt/tests/target/unsafe-binders.rs

+2
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,5 @@ struct Foo {
77
struct Bar(unsafe<'a> &'a ());
88

99
impl Trait for unsafe<'a> &'a () {}
10+
11+
fn empty() -> unsafe<> () {}

0 commit comments

Comments
 (0)