mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-25 06:03:16 +00:00
15 lines
155 B
Rust
15 lines
155 B
Rust
|
#![feature(stmt_expr_attributes)]
|
||
|
|
||
|
fn main() {
|
||
|
#[clippy::author]
|
||
|
{
|
||
|
;;;;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#[clippy::author]
|
||
|
fn foo() {
|
||
|
let x = 42i32;
|
||
|
-x;
|
||
|
}
|