rust/tests/ui/module_name_repetitions.rs

27 lines
400 B
Rust
Raw Normal View History

// compile-flags: --test
2018-12-17 14:29:19 +01:00
#![warn(clippy::module_name_repetitions)]
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
}
#[cfg(test)]
mod test {
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
}
2016-09-13 10:20:10 +02:00
fn main() {}