rust/tests/compile-fail/attrs.rs
Georg Brandl bcd95aec1c all: make style of lint messages consistent
* start first sentence lowercased
* use backticks to delimit code snippets
* use "this is wrong. Consider doing X." consistently
2015-08-12 10:47:09 +02:00

33 lines
577 B
Rust
Executable file

#![feature(plugin)]
#![plugin(clippy)]
#![deny(inline_always)]
#[inline(always)] //~ERROR you have declared `#[inline(always)]` on `test_attr_lint`.
fn test_attr_lint() {
assert!(true)
}
#[inline(always)]
fn false_positive_expr() {
unreachable!()
}
#[inline(always)]
fn false_positive_stmt() {
unreachable!();
}
#[inline(always)]
fn empty_and_false_positive_stmt() {
;
unreachable!();
}
fn main() {
test_attr_lint();
if false { false_positive_expr() }
if false { false_positive_stmt() }
if false { empty_and_false_positive_stmt() }
}