mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-15 01:17:16 +00:00
20 lines
287 B
Rust
20 lines
287 B
Rust
//@compile-flags: --test
|
|
#![warn(clippy::print_stdout)]
|
|
#![warn(clippy::print_stderr)]
|
|
|
|
fn foo(n: u32) {
|
|
print!("{n}");
|
|
eprint!("{n}");
|
|
}
|
|
|
|
#[test]
|
|
pub fn foo1() {
|
|
print!("{}", 1);
|
|
eprint!("{}", 1);
|
|
}
|
|
|
|
#[cfg(test)]
|
|
fn foo3() {
|
|
print!("{}", 1);
|
|
eprint!("{}", 1);
|
|
}
|