]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/target/should_not_format_string_when_format_strings_is_not_set.rs
Auto merge of #85597 - 0yoyoyo:fix-issue-71563-remove-redundant-args, r=petrochenkov
[rust.git] / src / tools / rustfmt / tests / target / should_not_format_string_when_format_strings_is_not_set.rs
1 // format_strings is false by default.
2
3 println!(
4     "DirEntry {{ \
5         binary_name: {:<64}, \
6         context_id: {:>2}, \
7         file_size: {:>6}, \
8         offset: 0x {:>08X}, \
9         actual_crc: 0x{:>08X} \
10     }}",
11     dir_entry.binary_name,
12     dir_entry.context_id,
13     dir_entry.file_size,
14     dir_entry.offset,
15     dir_entry.actual_crc
16 );