Skip to content

Commit 8e80f8a

Browse files
committed
don't apply formatting to builtin type ascription syntax
The syntax changed from `expr: ty` -> `builtin # type_ascribe(expr, ty)` For now, rustfmt will just emit the contents of the span.
1 parent 8c4c336 commit 8e80f8a

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,13 @@
88
[bytecount#92]: https://github.com/llogiq/bytecount/pull/92
99
[bytecount#93]: https://github.com/llogiq/bytecount/pull/93
1010

11+
- Output correct syntax for type ascription builtin [#6159](https://github.com/rust-lang/rustfmt/issues/6159)
12+
```rust
13+
fn main() {
14+
builtin # type_ascribe(10, usize)
15+
}
16+
```
17+
1118
## [1.7.0] 2023-10-22
1219

1320
### Fixed

src/expr.rs

+1-8
Original file line numberDiff line numberDiff line change
@@ -263,14 +263,6 @@ pub(crate) fn format_expr(
263263
shape,
264264
SeparatorPlace::Front,
265265
),
266-
ast::ExprKind::Type(ref expr, ref ty) => rewrite_pair(
267-
&**expr,
268-
&**ty,
269-
PairParts::infix(": "),
270-
context,
271-
shape,
272-
SeparatorPlace::Back,
273-
),
274266
ast::ExprKind::Index(ref expr, ref index, _) => {
275267
rewrite_index(&**expr, &**index, context, shape)
276268
}
@@ -412,6 +404,7 @@ pub(crate) fn format_expr(
412404
}
413405
ast::ExprKind::Underscore => Some("_".to_owned()),
414406
ast::ExprKind::FormatArgs(..)
407+
| ast::ExprKind::Type(..)
415408
| ast::ExprKind::IncludedBytes(..)
416409
| ast::ExprKind::OffsetOf(..) => {
417410
// These don't normally occur in the AST because macros aren't expanded. However,

tests/target/issue_6159.rs

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
fn main() {
2+
builtin # type_ascribe(10, usize)
3+
}

0 commit comments

Comments
 (0)