rust/tests/ui/author/blocks.rs
2019-05-28 13:01:11 +02:00

15 lines
155 B
Rust

#![feature(stmt_expr_attributes)]
fn main() {
#[clippy::author]
{
;;;;
}
}
#[clippy::author]
fn foo() {
let x = 42i32;
-x;
}