mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-27 23:20:39 +00:00
6 lines
101 B
Rust
Executable file
6 lines
101 B
Rust
Executable file
#![feature(tool_attributes)]
|
|
|
|
fn main() {
|
|
#[clippy::author]
|
|
let _ = ::std::cmp::min(3, 4);
|
|
}
|