mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 15:14:29 +00:00
e9f25b3b09
don't lint [`mixed_attributes_style`] when mixing docs and other attrs add test files for issue #12436 move [`mixed_attributes_style`] to `LateLintPass` to enable global `allow` stop [`mixed_attributes_style`] from linting on different attributes add `@compile-flags` to [`mixed_attributes_style`]'s test; turns out not linting in test mod is not a FN. Apply suggestions from code review Co-authored-by: Timo <30553356+y21@users.noreply.github.com> move [`mixed_attributes_style`] to late pass and stop it from linting on different kind of attributes
63 lines
1.7 KiB
Text
63 lines
1.7 KiB
Text
error: item has both inner and outer attributes
|
|
--> tests/ui/mixed_attributes_style.rs:10:1
|
|
|
|
|
LL | / #[allow(unused)]
|
|
LL | | fn foo1() {
|
|
LL | | #![allow(unused)]
|
|
| |_____________________^
|
|
|
|
|
= note: `-D clippy::mixed-attributes-style` implied by `-D warnings`
|
|
= help: to override `-D warnings` add `#[allow(clippy::mixed_attributes_style)]`
|
|
|
|
error: item has both inner and outer attributes
|
|
--> tests/ui/mixed_attributes_style.rs:24:1
|
|
|
|
|
LL | / /// linux
|
|
LL | |
|
|
LL | | fn foo4() {
|
|
LL | | //! windows
|
|
| |_______________^
|
|
|
|
error: item has both inner and outer attributes
|
|
--> tests/ui/mixed_attributes_style.rs:39:1
|
|
|
|
|
LL | / #[allow(unused)]
|
|
LL | | mod bar {
|
|
LL | | #![allow(unused)]
|
|
| |_____________________^
|
|
|
|
error: item has both inner and outer attributes
|
|
--> tests/ui/mixed_attributes_style.rs:69:9
|
|
|
|
|
LL | / #[allow(dead_code)]
|
|
LL | | mod inner_mod {
|
|
LL | | #![allow(dead_code)]
|
|
| |________________________________^
|
|
|
|
error: item has both inner and outer attributes
|
|
--> tests/ui/mixed_attributes_style.rs:80:9
|
|
|
|
|
LL | / #[allow(dead_code)]
|
|
LL | | mod inner_mod {
|
|
LL | | #![allow(dead_code)]
|
|
| |________________________________^
|
|
|
|
error: item has both inner and outer attributes
|
|
--> tests/ui/mixed_attributes_style.rs:85:5
|
|
|
|
|
LL | / /// Nested mod
|
|
LL | | #[allow(unused)]
|
|
LL | | mod nest_mod_2 {
|
|
LL | | #![allow(unused)]
|
|
| |_________________________^
|
|
|
|
error: item has both inner and outer attributes
|
|
--> tests/ui/mixed_attributes_style.rs:90:9
|
|
|
|
|
LL | / #[allow(dead_code)]
|
|
LL | | mod inner_mod {
|
|
LL | | #![allow(dead_code)]
|
|
| |________________________________^
|
|
|
|
error: aborting due to 7 previous errors
|
|
|