summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/formatting.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
commit698f8c2f01ea549d77d7dc3338a12e04c11057b9 (patch)
tree173a775858bd501c378080a10dca74132f05bc50 /src/tools/clippy/tests/ui/formatting.stderr
parentInitial commit. (diff)
downloadrustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.tar.xz
rustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.zip
Adding upstream version 1.64.0+dfsg1.upstream/1.64.0+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/tools/clippy/tests/ui/formatting.stderr')
-rw-r--r--src/tools/clippy/tests/ui/formatting.stderr52
1 files changed, 52 insertions, 0 deletions
diff --git a/src/tools/clippy/tests/ui/formatting.stderr b/src/tools/clippy/tests/ui/formatting.stderr
new file mode 100644
index 000000000..9272cd604
--- /dev/null
+++ b/src/tools/clippy/tests/ui/formatting.stderr
@@ -0,0 +1,52 @@
+error: this looks like you are trying to use `.. -= ..`, but you really are doing `.. = (- ..)`
+ --> $DIR/formatting.rs:16:6
+ |
+LL | a =- 35;
+ | ^^^^
+ |
+ = note: `-D clippy::suspicious-assignment-formatting` implied by `-D warnings`
+ = note: to remove this lint, use either `-=` or `= -`
+
+error: this looks like you are trying to use `.. *= ..`, but you really are doing `.. = (* ..)`
+ --> $DIR/formatting.rs:17:6
+ |
+LL | a =* &191;
+ | ^^^^
+ |
+ = note: to remove this lint, use either `*=` or `= *`
+
+error: this looks like you are trying to use `.. != ..`, but you really are doing `.. = (! ..)`
+ --> $DIR/formatting.rs:20:6
+ |
+LL | b =! false;
+ | ^^^^
+ |
+ = note: to remove this lint, use either `!=` or `= !`
+
+error: possibly missing a comma here
+ --> $DIR/formatting.rs:29:19
+ |
+LL | -1, -2, -3 // <= no comma here
+ | ^
+ |
+ = note: `-D clippy::possible-missing-comma` implied by `-D warnings`
+ = note: to remove this lint, add a comma or write the expr in a single line
+
+error: possibly missing a comma here
+ --> $DIR/formatting.rs:33:19
+ |
+LL | -1, -2, -3 // <= no comma here
+ | ^
+ |
+ = note: to remove this lint, add a comma or write the expr in a single line
+
+error: possibly missing a comma here
+ --> $DIR/formatting.rs:70:11
+ |
+LL | -1
+ | ^
+ |
+ = note: to remove this lint, add a comma or write the expr in a single line
+
+error: aborting due to 6 previous errors
+