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;
|
|
}
|