summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/print_in_format_impl.rs
blob: 261f50832199cfa35ed1561eed4dda5edafb8a3d (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
#![allow(unused, clippy::print_literal, clippy::write_literal)]
#![warn(clippy::print_in_format_impl)]
use std::fmt::{Debug, Display, Error, Formatter};
//@no-rustfix
macro_rules! indirect {
    () => {{ println!() }};
}

macro_rules! nested {
    ($($tt:tt)*) => {
        $($tt)*
    };
}

struct Foo;
impl Debug for Foo {
    fn fmt(&self, f: &mut Formatter) -> Result<(), Error> {
        static WORKS_WITH_NESTED_ITEMS: bool = true;

        print!("{}", 1);
        //~^ ERROR: use of `print!` in `Debug` impl
        //~| NOTE: `-D clippy::print-in-format-impl` implied by `-D warnings`
        println!("{}", 2);
        //~^ ERROR: use of `println!` in `Debug` impl
        eprint!("{}", 3);
        //~^ ERROR: use of `eprint!` in `Debug` impl
        eprintln!("{}", 4);
        //~^ ERROR: use of `eprintln!` in `Debug` impl
        nested! {
            println!("nested");
            //~^ ERROR: use of `println!` in `Debug` impl
        };

        write!(f, "{}", 5);
        writeln!(f, "{}", 6);
        indirect!();

        Ok(())
    }
}

impl Display for Foo {
    fn fmt(&self, f: &mut Formatter) -> Result<(), Error> {
        print!("Display");
        //~^ ERROR: use of `print!` in `Display` impl
        write!(f, "Display");

        Ok(())
    }
}

struct UnnamedFormatter;
impl Debug for UnnamedFormatter {
    fn fmt(&self, _: &mut Formatter) -> Result<(), Error> {
        println!("UnnamedFormatter");
        //~^ ERROR: use of `println!` in `Debug` impl
        Ok(())
    }
}

fn main() {
    print!("outside fmt");
    println!("outside fmt");
    eprint!("outside fmt");
    eprintln!("outside fmt");
}