2019-05-19 16:52:44 +02:00
|
|
|
#![feature(stmt_expr_attributes)]
|
2019-08-15 10:13:52 +02:00
|
|
|
#![allow(redundant_semicolon)]
|
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;
|
|
|
|
}
|