Remove no-rustfix marker for tests with no lint suggestions (#16608)

Letting the marker in place may make a future suggestion be ignored
while it is invalid – the test would pass nevertheless.

changelog: none
This commit is contained in:
llogiq
2026-02-22 11:58:09 +00:00
committed by GitHub
15 changed files with 59 additions and 66 deletions
-1
View File
@@ -1,5 +1,4 @@
//@compile-flags: --test
//@no-rustfix
#![warn(clippy::expect_used)]
#![allow(clippy::unnecessary_literal_unwrap)]
+4 -4
View File
@@ -1,5 +1,5 @@
error: used `expect()` on an `Option` value
--> tests/ui-toml/expect_used/expect_used.rs:8:13
--> tests/ui-toml/expect_used/expect_used.rs:7:13
|
LL | let _ = opt.expect("");
| ^^^^^^^^^^^^^^
@@ -9,7 +9,7 @@ LL | let _ = opt.expect("");
= help: to override `-D warnings` add `#[allow(clippy::expect_used)]`
error: used `expect()` on a `Result` value
--> tests/ui-toml/expect_used/expect_used.rs:14:13
--> tests/ui-toml/expect_used/expect_used.rs:13:13
|
LL | let _ = res.expect("");
| ^^^^^^^^^^^^^^
@@ -17,7 +17,7 @@ LL | let _ = res.expect("");
= note: if this value is an `Err`, it will panic
error: used `expect()` on an `Option` value
--> tests/ui-toml/expect_used/expect_used.rs:23:28
--> tests/ui-toml/expect_used/expect_used.rs:22:28
|
LL | const UNWRAPPED: i32 = SOME.expect("Not three?");
| ^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -25,7 +25,7 @@ LL | const UNWRAPPED: i32 = SOME.expect("Not three?");
= note: if this value is `None`, it will panic
error: used `expect()` on an `Option` value
--> tests/ui-toml/expect_used/expect_used.rs:26:9
--> tests/ui-toml/expect_used/expect_used.rs:25:9
|
LL | SOME.expect("Still not three?");
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+1 -1
View File
@@ -1,5 +1,5 @@
#![warn(clippy::unreadable_literal)]
//@no-rustfix
fn f2() -> impl Sized { && 3.14159265358979323846E }
//~^ ERROR: expected at least one digit in exponent
-1
View File
@@ -1,4 +1,3 @@
//@no-rustfix
#![warn(clippy::four_forward_slashes)]
//~v four_forward_slashes
+1 -1
View File
@@ -1,5 +1,5 @@
error: this item has comments with 4 forward slashes (`////`). These look like doc comments, but they aren't
--> tests/ui/four_forward_slashes_bare_cr.rs:5:1
--> tests/ui/four_forward_slashes_bare_cr.rs:4:1
|
LL | / //// nondoc comment with bare CR: '␍'
LL | | fn main() {}
-1
View File
@@ -1,4 +1,3 @@
//@no-rustfix
#![allow(clippy::len_without_is_empty)]
// Check that the lint expectation is fulfilled even if the lint is allowed at the type level.
+1 -1
View File
@@ -1,5 +1,5 @@
error: this lint expectation is unfulfilled
--> tests/ui/len_without_is_empty_expect.rs:18:14
--> tests/ui/len_without_is_empty_expect.rs:17:14
|
LL | #[expect(clippy::len_without_is_empty)]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+1 -1
View File
@@ -1,5 +1,5 @@
use std::future::Future;
//@no-rustfix
async fn some_async_fn() {}
fn sync_side_effects() {}
@@ -1,5 +1,5 @@
//@error-in-other-file: item has both inner and outer attributes
//@no-rustfix
#[path = "auxiliary/submodule.rs"] // don't lint.
/// This doc comment should not lint, it could be used to add context to the original module doc
mod submodule;
+1 -1
View File
@@ -12,7 +12,7 @@
clippy::missing_panics_doc,
clippy::return_self_not_must_use
)]
//@no-rustfix
use std::ops::Mul;
use std::rc::{self, Rc};
use std::sync::{self, Arc};
@@ -1,5 +1,3 @@
//@no-rustfix
#![warn(clippy::std_instead_of_core)]
#![warn(clippy::std_instead_of_alloc)]
#![allow(unused_imports)]
@@ -1,5 +1,5 @@
error: used import from `std` instead of `core`
--> tests/ui/std_instead_of_core_unfixable.rs:9:43
--> tests/ui/std_instead_of_core_unfixable.rs:7:43
|
LL | use std::{collections::HashMap, hash::Hash};
| ^^^^
@@ -9,7 +9,7 @@ LL | use std::{collections::HashMap, hash::Hash};
= help: to override `-D warnings` add `#[allow(clippy::std_instead_of_core)]`
error: used import from `std` instead of `core`
--> tests/ui/std_instead_of_core_unfixable.rs:15:22
--> tests/ui/std_instead_of_core_unfixable.rs:13:22
|
LL | use std::{error::Error, vec::Vec, fs::File};
| ^^^^^
@@ -17,7 +17,7 @@ LL | use std::{error::Error, vec::Vec, fs::File};
= help: consider importing the item from `core`
error: used import from `std` instead of `alloc`
--> tests/ui/std_instead_of_core_unfixable.rs:15:34
--> tests/ui/std_instead_of_core_unfixable.rs:13:34
|
LL | use std::{error::Error, vec::Vec, fs::File};
| ^^^
+1 -1
View File
@@ -1,5 +1,5 @@
//@aux-build:proc_macros.rs
//@no-rustfix
extern crate proc_macros;
use proc_macros::external;
-2
View File
@@ -1,5 +1,3 @@
//@no-rustfix
#![warn(clippy::unconditional_recursion)]
#![allow(
clippy::partialeq_ne_impl,
+45 -45
View File
@@ -1,5 +1,5 @@
error: function cannot return without recursing
--> tests/ui/unconditional_recursion.rs:51:5
--> tests/ui/unconditional_recursion.rs:49:5
|
LL | fn ne(&self, other: &Self) -> bool {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot return without recursing
@@ -12,7 +12,7 @@ LL | self.ne(other)
= help: to override `-D warnings` add `#[allow(unconditional_recursion)]`
error: function cannot return without recursing
--> tests/ui/unconditional_recursion.rs:56:5
--> tests/ui/unconditional_recursion.rs:54:5
|
LL | fn eq(&self, other: &Self) -> bool {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot return without recursing
@@ -23,7 +23,7 @@ LL | self.eq(other)
= help: a `loop` may express intention better if this is on purpose
error: function cannot return without recursing
--> tests/ui/unconditional_recursion.rs:235:5
--> tests/ui/unconditional_recursion.rs:233:5
|
LL | fn to_string(&self) -> String {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot return without recursing
@@ -34,7 +34,7 @@ LL | self.to_string()
= help: a `loop` may express intention better if this is on purpose
error: function cannot return without recursing
--> tests/ui/unconditional_recursion.rs:245:5
--> tests/ui/unconditional_recursion.rs:243:5
|
LL | fn to_string(&self) -> String {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot return without recursing
@@ -45,7 +45,7 @@ LL | x.to_string()
= help: a `loop` may express intention better if this is on purpose
error: function cannot return without recursing
--> tests/ui/unconditional_recursion.rs:256:5
--> tests/ui/unconditional_recursion.rs:254:5
|
LL | fn to_string(&self) -> String {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ cannot return without recursing
@@ -56,7 +56,7 @@ LL | (self as &Self).to_string()
= help: a `loop` may express intention better if this is on purpose
error: function cannot return without recursing
--> tests/ui/unconditional_recursion.rs:17:5
--> tests/ui/unconditional_recursion.rs:15:5
|
LL | / fn ne(&self, other: &Self) -> bool {
LL | |
@@ -66,7 +66,7 @@ LL | | }
| |_____^
|
note: recursive call site
--> tests/ui/unconditional_recursion.rs:20:9
--> tests/ui/unconditional_recursion.rs:18:9
|
LL | self != other
| ^^^^^^^^^^^^^
@@ -74,7 +74,7 @@ LL | self != other
= help: to override `-D warnings` add `#[allow(clippy::unconditional_recursion)]`
error: function cannot return without recursing
--> tests/ui/unconditional_recursion.rs:22:5
--> tests/ui/unconditional_recursion.rs:20:5
|
LL | / fn eq(&self, other: &Self) -> bool {
LL | |
@@ -84,13 +84,13 @@ LL | | }
| |_____^
|
note: recursive call site
--> tests/ui/unconditional_recursion.rs:25:9
--> tests/ui/unconditional_recursion.rs:23:9
|
LL | self == other
| ^^^^^^^^^^^^^
error: function cannot return without recursing
--> tests/ui/unconditional_recursion.rs:35:5
--> tests/ui/unconditional_recursion.rs:33:5
|
LL | / fn ne(&self, other: &Self) -> bool {
LL | |
@@ -99,13 +99,13 @@ LL | | }
| |_____^
|
note: recursive call site
--> tests/ui/unconditional_recursion.rs:37:9
--> tests/ui/unconditional_recursion.rs:35:9
|
LL | self != &Foo2::B // no error here
| ^^^^^^^^^^^^^^^^
error: function cannot return without recursing
--> tests/ui/unconditional_recursion.rs:39:5
--> tests/ui/unconditional_recursion.rs:37:5
|
LL | / fn eq(&self, other: &Self) -> bool {
LL | |
@@ -114,13 +114,13 @@ LL | | }
| |_____^
|
note: recursive call site
--> tests/ui/unconditional_recursion.rs:41:9
--> tests/ui/unconditional_recursion.rs:39:9
|
LL | self == &Foo2::B // no error here
| ^^^^^^^^^^^^^^^^
error: function cannot return without recursing
--> tests/ui/unconditional_recursion.rs:51:5
--> tests/ui/unconditional_recursion.rs:49:5
|
LL | / fn ne(&self, other: &Self) -> bool {
LL | |
@@ -130,13 +130,13 @@ LL | | }
| |_____^
|
note: recursive call site
--> tests/ui/unconditional_recursion.rs:54:9
--> tests/ui/unconditional_recursion.rs:52:9
|
LL | self.ne(other)
| ^^^^^^^^^^^^^^
error: function cannot return without recursing
--> tests/ui/unconditional_recursion.rs:56:5
--> tests/ui/unconditional_recursion.rs:54:5
|
LL | / fn eq(&self, other: &Self) -> bool {
... |
@@ -144,13 +144,13 @@ LL | | }
| |_____^
|
note: recursive call site
--> tests/ui/unconditional_recursion.rs:60:9
--> tests/ui/unconditional_recursion.rs:58:9
|
LL | self.eq(other)
| ^^^^^^^^^^^^^^
error: function cannot return without recursing
--> tests/ui/unconditional_recursion.rs:102:5
--> tests/ui/unconditional_recursion.rs:100:5
|
LL | / fn ne(&self, other: &Self) -> bool {
LL | |
@@ -160,13 +160,13 @@ LL | | }
| |_____^
|
note: recursive call site
--> tests/ui/unconditional_recursion.rs:105:9
--> tests/ui/unconditional_recursion.rs:103:9
|
LL | other != self
| ^^^^^^^^^^^^^
error: function cannot return without recursing
--> tests/ui/unconditional_recursion.rs:107:5
--> tests/ui/unconditional_recursion.rs:105:5
|
LL | / fn eq(&self, other: &Self) -> bool {
LL | |
@@ -176,13 +176,13 @@ LL | | }
| |_____^
|
note: recursive call site
--> tests/ui/unconditional_recursion.rs:110:9
--> tests/ui/unconditional_recursion.rs:108:9
|
LL | other == self
| ^^^^^^^^^^^^^
error: function cannot return without recursing
--> tests/ui/unconditional_recursion.rs:118:5
--> tests/ui/unconditional_recursion.rs:116:5
|
LL | / fn ne(&self, other: &Self) -> bool {
LL | |
@@ -193,13 +193,13 @@ LL | | }
| |_____^
|
note: recursive call site
--> tests/ui/unconditional_recursion.rs:121:9
--> tests/ui/unconditional_recursion.rs:119:9
|
LL | other != other
| ^^^^^^^^^^^^^^
error: equal expressions as operands to `!=`
--> tests/ui/unconditional_recursion.rs:121:9
--> tests/ui/unconditional_recursion.rs:119:9
|
LL | other != other
| ^^^^^^^^^^^^^^
@@ -207,7 +207,7 @@ LL | other != other
= note: `#[deny(clippy::eq_op)]` on by default
error: function cannot return without recursing
--> tests/ui/unconditional_recursion.rs:124:5
--> tests/ui/unconditional_recursion.rs:122:5
|
LL | / fn eq(&self, other: &Self) -> bool {
LL | |
@@ -218,19 +218,19 @@ LL | | }
| |_____^
|
note: recursive call site
--> tests/ui/unconditional_recursion.rs:127:9
--> tests/ui/unconditional_recursion.rs:125:9
|
LL | other == other
| ^^^^^^^^^^^^^^
error: equal expressions as operands to `==`
--> tests/ui/unconditional_recursion.rs:127:9
--> tests/ui/unconditional_recursion.rs:125:9
|
LL | other == other
| ^^^^^^^^^^^^^^
error: function cannot return without recursing
--> tests/ui/unconditional_recursion.rs:135:5
--> tests/ui/unconditional_recursion.rs:133:5
|
LL | / fn ne(&self, _other: &Self) -> bool {
LL | |
@@ -241,19 +241,19 @@ LL | | }
| |_____^
|
note: recursive call site
--> tests/ui/unconditional_recursion.rs:138:9
--> tests/ui/unconditional_recursion.rs:136:9
|
LL | self != self
| ^^^^^^^^^^^^
error: equal expressions as operands to `!=`
--> tests/ui/unconditional_recursion.rs:138:9
--> tests/ui/unconditional_recursion.rs:136:9
|
LL | self != self
| ^^^^^^^^^^^^
error: function cannot return without recursing
--> tests/ui/unconditional_recursion.rs:141:5
--> tests/ui/unconditional_recursion.rs:139:5
|
LL | / fn eq(&self, _other: &Self) -> bool {
LL | |
@@ -264,19 +264,19 @@ LL | | }
| |_____^
|
note: recursive call site
--> tests/ui/unconditional_recursion.rs:144:9
--> tests/ui/unconditional_recursion.rs:142:9
|
LL | self == self
| ^^^^^^^^^^^^
error: equal expressions as operands to `==`
--> tests/ui/unconditional_recursion.rs:144:9
--> tests/ui/unconditional_recursion.rs:142:9
|
LL | self == self
| ^^^^^^^^^^^^
error: function cannot return without recursing
--> tests/ui/unconditional_recursion.rs:171:13
--> tests/ui/unconditional_recursion.rs:169:13
|
LL | / fn eq(&self, other: &Self) -> bool {
LL | |
@@ -289,7 +289,7 @@ LL | impl_partial_eq!(S5);
| -------------------- in this macro invocation
|
note: recursive call site
--> tests/ui/unconditional_recursion.rs:174:17
--> tests/ui/unconditional_recursion.rs:172:17
|
LL | self == other
| ^^^^^^^^^^^^^
@@ -299,7 +299,7 @@ LL | impl_partial_eq!(S5);
= note: this error originates in the macro `impl_partial_eq` (in Nightly builds, run with -Z macro-backtrace for more info)
error: function cannot return without recursing
--> tests/ui/unconditional_recursion.rs:201:5
--> tests/ui/unconditional_recursion.rs:199:5
|
LL | / fn eq(&self, other: &Self) -> bool {
LL | |
@@ -311,13 +311,13 @@ LL | | }
| |_____^
|
note: recursive call site
--> tests/ui/unconditional_recursion.rs:206:9
--> tests/ui/unconditional_recursion.rs:204:9
|
LL | mine == theirs
| ^^^^^^^^^^^^^^
error: function cannot return without recursing
--> tests/ui/unconditional_recursion.rs:271:5
--> tests/ui/unconditional_recursion.rs:269:5
|
LL | / fn new() -> Self {
LL | |
@@ -327,13 +327,13 @@ LL | | }
| |_____^
|
note: recursive call site
--> tests/ui/unconditional_recursion.rs:274:9
--> tests/ui/unconditional_recursion.rs:272:9
|
LL | Self::default()
| ^^^^^^^^^^^^^^^
error: function cannot return without recursing
--> tests/ui/unconditional_recursion.rs:311:5
--> tests/ui/unconditional_recursion.rs:309:5
|
LL | / fn eq(&self, other: &Self) -> bool {
LL | |
@@ -345,13 +345,13 @@ LL | | }
| |_____^
|
note: recursive call site
--> tests/ui/unconditional_recursion.rs:316:9
--> tests/ui/unconditional_recursion.rs:314:9
|
LL | mine.eq(theirs)
| ^^^^^^^^^^^^^^^
error: function cannot return without recursing
--> tests/ui/unconditional_recursion.rs:383:5
--> tests/ui/unconditional_recursion.rs:381:5
|
LL | / fn from(f: BadFromTy1<'a>) -> Self {
LL | |
@@ -360,13 +360,13 @@ LL | | }
| |_____^
|
note: recursive call site
--> tests/ui/unconditional_recursion.rs:385:9
--> tests/ui/unconditional_recursion.rs:383:9
|
LL | f.into()
| ^^^^^^^^
error: function cannot return without recursing
--> tests/ui/unconditional_recursion.rs:393:5
--> tests/ui/unconditional_recursion.rs:391:5
|
LL | / fn from(f: BadFromTy2<'a>) -> Self {
LL | |
@@ -375,7 +375,7 @@ LL | | }
| |_____^
|
note: recursive call site
--> tests/ui/unconditional_recursion.rs:395:9
--> tests/ui/unconditional_recursion.rs:393:9
|
LL | Into::into(f)
| ^^^^^^^^^^^^^