rust/tests/target/issue_6159.rs
Yacin Tmimi 8e80f8aa3a 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.
2024-06-12 22:40:15 -04:00

4 lines
52 B
Rust

fn main() {
builtin # type_ascribe(10, usize)
}