diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2024-09-15 16:01:37 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-15 16:01:37 +0200 |
| commit | e3bb779e1eb6514a6881ff678c30a3ec39c25b87 (patch) | |
| tree | 1b24fb3242e2a86d3d3821f508be338b02adf7be | |
| parent | 976131f89663f565da9ab2b26bb8c33674d70460 (diff) | |
| parent | 9e697964dc82522ed56b5d2f73f54a8e88638e9a (diff) | |
| download | rust-e3bb779e1eb6514a6881ff678c30a3ec39c25b87.tar.gz rust-e3bb779e1eb6514a6881ff678c30a3ec39c25b87.zip | |
Rollup merge of #130293 - gurry:130142-lint-level-issue, r=cjgillot
Fix lint levels not getting overridden by attrs on `Stmt` nodes Fixes #130142. See comments on the issue for context. r? `@cjgillot`
| -rw-r--r-- | tests/ui/expect_tool_lint_rfc_2383.stderr | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/tests/ui/expect_tool_lint_rfc_2383.stderr b/tests/ui/expect_tool_lint_rfc_2383.stderr index f70d3408aa4..028e22ca724 100644 --- a/tests/ui/expect_tool_lint_rfc_2383.stderr +++ b/tests/ui/expect_tool_lint_rfc_2383.stderr @@ -14,6 +14,14 @@ LL | #[expect(invalid_nan_comparisons)] | ^^^^^^^^^^^^^^^^^^^^^^^ error: this lint expectation is unfulfilled + --> tests/ui/expect_tool_lint_rfc_2383.rs:36:18 + | +LL | #[expect(invalid_nan_comparisons)] + | ^^^^^^^^^^^^^^^^^^^^^^^ + | + = note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no` + +error: this lint expectation is unfulfilled --> tests/ui/expect_tool_lint_rfc_2383.rs:107:14 | LL | #[expect(clippy::almost_swapped)] @@ -37,5 +45,5 @@ error: this lint expectation is unfulfilled LL | #[expect(clippy::overly_complex_bool_expr)] | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -error: aborting due to 6 previous errors +error: aborting due to 7 previous errors |
