mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-11 07:34:18 +00:00
9 lines
129 B
Rust
9 lines
129 B
Rust
#![deny(clippy::all)]
|
|
|
|
/// Test for https://github.com/rust-lang/rust-clippy/issues/700
|
|
|
|
fn core() {}
|
|
|
|
fn main() {
|
|
core();
|
|
}
|