summaryrefslogtreecommitdiffstats
path: root/tests/ui/span/issue-24690.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /tests/ui/span/issue-24690.stderr
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/span/issue-24690.stderr')
-rw-r--r--tests/ui/span/issue-24690.stderr29
1 files changed, 29 insertions, 0 deletions
diff --git a/tests/ui/span/issue-24690.stderr b/tests/ui/span/issue-24690.stderr
new file mode 100644
index 000000000..73e166e64
--- /dev/null
+++ b/tests/ui/span/issue-24690.stderr
@@ -0,0 +1,29 @@
+warning: unused variable: `theOtherTwo`
+ --> $DIR/issue-24690.rs:13:9
+ |
+LL | let theOtherTwo = 2;
+ | ^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_theOtherTwo`
+ |
+note: the lint level is defined here
+ --> $DIR/issue-24690.rs:8:9
+ |
+LL | #![warn(unused)]
+ | ^^^^^^
+ = note: `#[warn(unused_variables)]` implied by `#[warn(unused)]`
+
+warning: variable `theTwo` should have a snake case name
+ --> $DIR/issue-24690.rs:12:9
+ |
+LL | let theTwo = 2;
+ | ^^^^^^ help: convert the identifier to snake case: `the_two`
+ |
+ = note: `#[warn(non_snake_case)]` on by default
+
+warning: variable `theOtherTwo` should have a snake case name
+ --> $DIR/issue-24690.rs:13:9
+ |
+LL | let theOtherTwo = 2;
+ | ^^^^^^^^^^^ help: convert the identifier to snake case: `the_other_two`
+
+warning: 3 warnings emitted
+