summaryrefslogtreecommitdiffstats
path: root/src/test/ui/lint/rfc-2383-lint-reason/expect_nested_lint_levels.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/lint/rfc-2383-lint-reason/expect_nested_lint_levels.stderr')
-rw-r--r--src/test/ui/lint/rfc-2383-lint-reason/expect_nested_lint_levels.stderr52
1 files changed, 0 insertions, 52 deletions
diff --git a/src/test/ui/lint/rfc-2383-lint-reason/expect_nested_lint_levels.stderr b/src/test/ui/lint/rfc-2383-lint-reason/expect_nested_lint_levels.stderr
deleted file mode 100644
index 2c35647b8..000000000
--- a/src/test/ui/lint/rfc-2383-lint-reason/expect_nested_lint_levels.stderr
+++ /dev/null
@@ -1,52 +0,0 @@
-error: unused variable: `this_is_my_function`
- --> $DIR/expect_nested_lint_levels.rs:48:9
- |
-LL | let this_is_my_function = 3;
- | ^^^^^^^^^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_this_is_my_function`
- |
-note: the lint level is defined here
- --> $DIR/expect_nested_lint_levels.rs:45:10
- |
-LL | #[forbid(unused_variables)]
- | ^^^^^^^^^^^^^^^^
-
-warning: variable does not need to be mutable
- --> $DIR/expect_nested_lint_levels.rs:36:13
- |
-LL | let mut v = 0;
- | ----^
- | |
- | help: remove this `mut`
- |
- = note: this overrides the previous `expect` lint level and warns about the `unused_mut` lint here
-note: the lint level is defined here
- --> $DIR/expect_nested_lint_levels.rs:31:9
- |
-LL | unused_mut,
- | ^^^^^^^^^^
-
-warning: this lint expectation is unfulfilled
- --> $DIR/expect_nested_lint_levels.rs:7:5
- |
-LL | unused_mut,
- | ^^^^^^^^^^
- |
- = note: this `expect` is overridden by a `allow` attribute before the `unused_mut` lint is triggered
- = note: `#[warn(unfulfilled_lint_expectations)]` on by default
-
-warning: this lint expectation is unfulfilled
- --> $DIR/expect_nested_lint_levels.rs:24:5
- |
-LL | unused_mut,
- | ^^^^^^^^^^
- |
- = note: this `expect` is overridden by a `warn` attribute before the `unused_mut` lint is triggered
-
-warning: this lint expectation is unfulfilled
- --> $DIR/expect_nested_lint_levels.rs:43:10
- |
-LL | #[expect(unused_variables)]
- | ^^^^^^^^^^^^^^^^
-
-error: aborting due to previous error; 4 warnings emitted
-