about summary refs log tree commit diff
path: root/src/tools/clippy/tests/ui/print_literal.fixed
blob: 26139f9b67102333fba83da9a47aab2e38841b1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
#![warn(clippy::print_literal)]
#![allow(clippy::uninlined_format_args, clippy::literal_string_with_formatting_args)]

fn main() {
    // these should be fine
    print!("Hello");
    println!("Hello");
    let world = "world";
    println!("Hello {}", world);
    println!("Hello {world}", world = world);
    println!("3 in hex is {:X}", 3);
    println!("2 + 1 = {:.4}", 3);
    println!("2 + 1 = {:5.4}", 3);
    println!("Debug test {:?}", "hello, world");
    println!("{0:8} {1:>8}", "hello", "world");
    println!("{1:8} {0:>8}", "hello", "world");
    println!("{foo:8} {bar:>8}", foo = "hello", bar = "world");
    println!("{bar:8} {foo:>8}", foo = "hello", bar = "world");
    println!("{number:>width$}", number = 1, width = 6);
    println!("{number:>0width$}", number = 1, width = 6);
    println!("{} of {:b} people know binary, the other half doesn't", 1, 2);
    println!("10 / 4 is {}", 2.5);
    println!("2 + 1 = {}", 3);
    println!("From expansion {}", stringify!(not a string literal));

    // these should throw warnings
    print!("Hello world");
    //~^ print_literal

    println!("Hello {} world", world);
    //~^ print_literal

    println!("Hello world");
    //~^ print_literal

    println!("a literal {:.4}", 5);
    //~^ print_literal

    // positional args don't change the fact
    // that we're using a literal -- this should
    // throw a warning
    println!("hello world");
    //~^ print_literal

    println!("world hello");
    //~^ print_literal

    // named args shouldn't change anything either
    println!("hello world");
    //~^ print_literal

    println!("world hello");
    //~^ print_literal

    // The string literal from `file!()` has a callsite span that isn't marked as coming from an
    // expansion
    println!("file: {}", file!());

    // Braces in unicode escapes should not be escaped
    println!("{{}} \x00 \u{ab123} \\\u{ab123} {{:?}}");
    //~^ print_literal
    println!("\\\u{1234}");
    //~^ print_literal
    // This does not lint because it would have to suggest unescaping the character
    println!(r"{}", "\u{ab123}");
    // These are not unicode escapes
    println!("\\u{{ab123}} \\u{{{{");
    //~^ print_literal
    println!(r"\u{{ab123}} \u{{{{");
    //~^ print_literal
    println!("\\{{ab123}} \\u{{{{");
    //~^ print_literal
    println!("\\u{{ab123}}");
    //~^ print_literal
    println!("\\\\u{{1234}}");
    //~^ print_literal

    println!("mixed: {{hello}} {world}");
    //~^ print_literal
}

fn issue_13959() {
    println!("\"");
    //~^ print_literal
    println!(
        "
        //~^ print_literal
        foo
        \\
        \\\\
        \"
        \\\"
        bar
"
    );
}

fn issue_14930() {
    println!("Hello x is {0:2$.1$}", 0.01, 2, 3);
    //~^ print_literal
    println!("Hello x is {0:2$.1$}", 0.01, 2, 3);
    //~^ print_literal
    println!("Hello x is {0:2$.1$}", 0.01, 2, 3);
    //~^ print_literal
    println!("Hello x is {0:2$.1$}", 0.01, 2, 3);
    //~^ print_literal
}

fn issue_15576() {
    println!("Hello x is {1:.*}", 5, 0.01);
    //~^ print_literal

    println!("Hello x is {:.p$}", 0.01, p = 5);
    //~^ print_literal

    println!(
        "Hello name: x is {1:.*} (which {1} with {0} places)", 5, 0.01
    );
    //~^^ print_literal
}