mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-17 11:05:20 +00:00
10 lines
97 B
Rust
10 lines
97 B
Rust
![]() |
#![feature(plugin)]
|
||
|
#![plugin(clippy)]
|
||
|
#![deny(clippy)]
|
||
|
|
||
|
fn core() {}
|
||
|
|
||
|
fn main() {
|
||
|
core();
|
||
|
}
|