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