rust/tests/ui/stutter.rs

19 lines
288 B
Rust
Raw Normal View History

2018-07-28 17:34:52 +02:00
#![feature(tool_lints)]
2017-09-18 12:47:33 +02:00
2018-07-28 17:34:52 +02:00
#![warn(clippy::stutter)]
2016-09-13 10:20:10 +02:00
#![allow(dead_code)]
mod foo {
pub fn foo() {}
2017-02-08 14:58:07 +01:00
pub fn foo_bar() {}
pub fn bar_foo() {}
pub struct FooCake {}
pub enum CakeFoo {}
2017-11-26 18:57:34 +01:00
pub struct Foo7Bar;
// Should not warn
pub struct Foobar;
2016-09-13 10:20:10 +02:00
}
fn main() {}