mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-29 12:36:35 +03:00
68 lines
1.5 KiB
Plaintext
68 lines
1.5 KiB
Plaintext
error: multiple implementations of this structure
|
|
--> tests/ui/multiple_inherent_impl_cfg.rs:12:1
|
|
|
|
|
LL | impl A {}
|
|
| ^^^^^^^^^
|
|
|
|
|
note: first implementation here
|
|
--> tests/ui/multiple_inherent_impl_cfg.rs:10:1
|
|
|
|
|
LL | impl A {}
|
|
| ^^^^^^^^^
|
|
note: the lint level is defined here
|
|
--> tests/ui/multiple_inherent_impl_cfg.rs:2:9
|
|
|
|
|
LL | #![deny(clippy::multiple_inherent_impl)]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: multiple implementations of this structure
|
|
--> tests/ui/multiple_inherent_impl_cfg.rs:19:1
|
|
|
|
|
LL | impl A {}
|
|
| ^^^^^^^^^
|
|
|
|
|
note: first implementation here
|
|
--> tests/ui/multiple_inherent_impl_cfg.rs:16:1
|
|
|
|
|
LL | impl A {}
|
|
| ^^^^^^^^^
|
|
|
|
error: multiple implementations of this structure
|
|
--> tests/ui/multiple_inherent_impl_cfg.rs:29:1
|
|
|
|
|
LL | impl B {}
|
|
| ^^^^^^^^^
|
|
|
|
|
note: first implementation here
|
|
--> tests/ui/multiple_inherent_impl_cfg.rs:24:1
|
|
|
|
|
LL | impl B {}
|
|
| ^^^^^^^^^
|
|
|
|
error: multiple implementations of this structure
|
|
--> tests/ui/multiple_inherent_impl_cfg.rs:33:1
|
|
|
|
|
LL | impl B {}
|
|
| ^^^^^^^^^
|
|
|
|
|
note: first implementation here
|
|
--> tests/ui/multiple_inherent_impl_cfg.rs:27:1
|
|
|
|
|
LL | impl B {}
|
|
| ^^^^^^^^^
|
|
|
|
error: multiple implementations of this structure
|
|
--> tests/ui/multiple_inherent_impl_cfg.rs:43:1
|
|
|
|
|
LL | impl C {}
|
|
| ^^^^^^^^^
|
|
|
|
|
note: first implementation here
|
|
--> tests/ui/multiple_inherent_impl_cfg.rs:40:1
|
|
|
|
|
LL | impl C {}
|
|
| ^^^^^^^^^
|
|
|
|
error: aborting due to 5 previous errors
|
|
|