Matthias Krüger
4b26045b92
Rollup merge of #125158 - Nilstrieb:block-indent, r=compiler-errors
hir pretty: fix block indent
before:
```rust
fn main() {
{
{
::std::io::_print(format_arguments::new_const(&["Hello, world!\n"]));
};
}
}
```
after:
```rust
fn main() {
{
{
::std::io::_print(format_arguments::new_const(&["Hello, world!\n"]));
};
}
}
```
AST pretty does the same.
2024-05-21 00:47:02 +02:00
..
2024-05-18 10:36:02 -07:00
2024-05-20 20:30:44 +02:00
2024-05-20 20:30:44 +02:00
2024-05-18 10:36:02 -07:00
2024-05-18 10:36:02 -07:00
2024-05-18 10:36:02 -07:00
2024-05-18 10:36:02 -07:00
2024-05-20 20:30:44 +02:00
2024-05-12 13:37:00 -07:00
2024-05-20 20:30:44 +02:00
2024-04-28 11:07:00 +02:00