2019-05-19 16:52:44 +02:00
|
|
|
#![feature(stmt_expr_attributes)]
|
2020-03-04 00:54:27 +01:00
|
|
|
#![allow(redundant_semicolons, clippy::no_effect)]
|
2019-05-19 16:52:44 +02:00
|
|
|
|
2019-05-20 15:32:46 +02:00
|
|
|
#[rustfmt::skip]
|
2019-05-19 16:52:44 +02:00
|
|
|
fn main() {
|
|
|
|
#[clippy::author]
|
|
|
|
{
|
|
|
|
;;;;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[clippy::author]
|
|
|
|
fn foo() {
|
|
|
|
let x = 42i32;
|
|
|
|
-x;
|
|
|
|
}
|