blob: 9000c44a3902e4cec395d91d70b5e1b233d29393 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
error: item name starts with its containing module's name
--> tests/ui/module_name_repetitions.rs:8:12
|
LL | pub fn foo_bar() {}
| ^^^^^^^
|
= note: `-D clippy::module-name-repetitions` implied by `-D warnings`
= help: to override `-D warnings` add `#[allow(clippy::module_name_repetitions)]`
error: item name ends with its containing module's name
--> tests/ui/module_name_repetitions.rs:11:12
|
LL | pub fn bar_foo() {}
| ^^^^^^^
error: item name starts with its containing module's name
--> tests/ui/module_name_repetitions.rs:14:16
|
LL | pub struct FooCake;
| ^^^^^^^
error: item name ends with its containing module's name
--> tests/ui/module_name_repetitions.rs:17:14
|
LL | pub enum CakeFoo {}
| ^^^^^^^
error: item name starts with its containing module's name
--> tests/ui/module_name_repetitions.rs:20:16
|
LL | pub struct Foo7Bar;
| ^^^^^^^
error: item name starts with its containing module's name
--> tests/ui/module_name_repetitions.rs:33:20
|
LL | pub use error::FooError;
| ^^^^^^^^
error: aborting due to 6 previous errors
|