]> git.proxmox.com Git - rustc.git/blob - src/tools/rustfmt/tests/target/should_not_format_string_when_format_strings_is_not_set.rs
New upstream version 1.52.1+dfsg1
[rustc.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 );