]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/tests/ui/print_literal.rs
Auto merge of #101969 - reez12g:issue-101306, r=reez12g
[rust.git] / src / tools / clippy / tests / ui / print_literal.rs
1 #![warn(clippy::print_literal)]
2
3 fn main() {
4     // these should be fine
5     print!("Hello");
6     println!("Hello");
7     let world = "world";
8     println!("Hello {}", world);
9     println!("Hello {world}", world = world);
10     println!("3 in hex is {:X}", 3);
11     println!("2 + 1 = {:.4}", 3);
12     println!("2 + 1 = {:5.4}", 3);
13     println!("Debug test {:?}", "hello, world");
14     println!("{0:8} {1:>8}", "hello", "world");
15     println!("{1:8} {0:>8}", "hello", "world");
16     println!("{foo:8} {bar:>8}", foo = "hello", bar = "world");
17     println!("{bar:8} {foo:>8}", foo = "hello", bar = "world");
18     println!("{number:>width$}", number = 1, width = 6);
19     println!("{number:>0width$}", number = 1, width = 6);
20     println!("{} of {:b} people know binary, the other half doesn't", 1, 2);
21     println!("10 / 4 is {}", 2.5);
22     println!("2 + 1 = {}", 3);
23     println!("From expansion {}", stringify!(not a string literal));
24
25     // these should throw warnings
26     print!("Hello {}", "world");
27     println!("Hello {} {}", world, "world");
28     println!("Hello {}", "world");
29     println!("{} {:.4}", "a literal", 5);
30
31     // positional args don't change the fact
32     // that we're using a literal -- this should
33     // throw a warning
34     println!("{0} {1}", "hello", "world");
35     println!("{1} {0}", "hello", "world");
36
37     // named args shouldn't change anything either
38     println!("{foo} {bar}", foo = "hello", bar = "world");
39     println!("{bar} {foo}", foo = "hello", bar = "world");
40 }