10 lines
196 B
Rust
10 lines
196 B
Rust
#![feature(plugin)]
|
|
#![plugin(clippy)]
|
|
#![deny(items_after_statements)]
|
|
|
|
fn main() {
|
|
foo();
|
|
fn foo() { println!("foo"); } //~ ERROR adding items after statements is confusing
|
|
foo();
|
|
}
|