mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-21 17:52:12 +03:00
20 lines
261 B
Rust
20 lines
261 B
Rust
#![feature(plugin)]
|
|
#![plugin(clippy)]
|
|
#![deny(items_after_statements)]
|
|
|
|
fn ok() {
|
|
fn foo() { println!("foo"); }
|
|
foo();
|
|
}
|
|
|
|
fn last() {
|
|
foo();
|
|
fn foo() { println!("foo"); }
|
|
}
|
|
|
|
fn main() {
|
|
foo();
|
|
fn foo() { println!("foo"); }
|
|
foo();
|
|
}
|