rust-clippy/tests/ui/stutter.rs
2018-08-29 11:08:29 -07:00

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() {}