2015-05-30 13:10:19 +00:00
|
|
|
#![feature(plugin)]
|
|
|
|
#![plugin(clippy)]
|
|
|
|
|
2015-06-07 10:03:56 +00:00
|
|
|
#![deny(inline_always)]
|
|
|
|
|
2015-05-30 13:10:19 +00:00
|
|
|
#[inline(always)] //~ERROR You have declared #[inline(always)] on test_attr_lint.
|
|
|
|
fn test_attr_lint() {
|
|
|
|
assert!(true)
|
|
|
|
}
|
|
|
|
|
2015-06-07 10:03:56 +00:00
|
|
|
#[inline(always)]
|
|
|
|
fn false_positive_expr() {
|
|
|
|
unreachable!()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline(always)]
|
|
|
|
fn false_positive_stmt() {
|
|
|
|
unreachable!();
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline(always)]
|
|
|
|
fn empty_and_false_positive_stmt() {
|
|
|
|
;
|
|
|
|
unreachable!();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-05-30 13:10:19 +00:00
|
|
|
fn main() {
|
2015-06-07 10:03:56 +00:00
|
|
|
test_attr_lint();
|
|
|
|
if false { false_positive_expr() }
|
|
|
|
if false { false_positive_stmt() }
|
|
|
|
if false { empty_and_false_positive_stmt() }
|
2015-05-30 13:10:19 +00:00
|
|
|
}
|