mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-18 11:34:11 +00:00
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();
|
|
}
|