mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-23 13:13:34 +00:00
18 lines
288 B
Rust
18 lines
288 B
Rust
#![feature(tool_lints)]
|
|
|
|
#![warn(clippy::stutter)]
|
|
#![allow(dead_code)]
|
|
|
|
mod foo {
|
|
pub fn foo() {}
|
|
pub fn foo_bar() {}
|
|
pub fn bar_foo() {}
|
|
pub struct FooCake {}
|
|
pub enum CakeFoo {}
|
|
pub struct Foo7Bar;
|
|
|
|
// Should not warn
|
|
pub struct Foobar;
|
|
}
|
|
|
|
fn main() {}
|