rust-clippy/tests/compile-fail/item_after_statement.rs

20 lines
367 B
Rust
Raw Normal View History

2016-01-24 09:16:56 +00:00
#![feature(plugin)]
#![plugin(clippy)]
#![deny(items_after_statements)]
fn ok() {
fn foo() { println!("foo"); }
foo();
}
fn last() {
foo();
fn foo() { println!("foo"); } //~ ERROR adding items after statements is confusing
}
2016-01-24 09:16:56 +00:00
fn main() {
foo();
fn foo() { println!("foo"); } //~ ERROR adding items after statements is confusing
foo();
}