]> git.lizzy.rs Git - rust.git/blob - src/tools/clippy/src/docs/print_literal.txt
Rollup merge of #101389 - lukaslueg:rcgetmutdocs, r=m-ou-se
[rust.git] / src / tools / clippy / src / docs / print_literal.txt
1 ### What it does
2 This lint warns about the use of literals as `print!`/`println!` args.
3
4 ### Why is this bad?
5 Using literals as `println!` args is inefficient
6 (c.f., https://github.com/matthiaskrgr/rust-str-bench) and unnecessary
7 (i.e., just put the literal in the format string)
8
9 ### Known problems
10 Will also warn with macro calls as arguments that expand to literals
11 -- e.g., `println!("{}", env!("FOO"))`.
12
13 ### Example
14 ```
15 println!("{}", "foo");
16 ```
17 use the literal without formatting:
18 ```
19 println!("foo");
20 ```