summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/unseparated_prefix_literals.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/unseparated_prefix_literals.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/unseparated_prefix_literals.stderr')
-rw-r--r--src/tools/clippy/tests/ui/unseparated_prefix_literals.stderr63
1 files changed, 63 insertions, 0 deletions
diff --git a/src/tools/clippy/tests/ui/unseparated_prefix_literals.stderr b/src/tools/clippy/tests/ui/unseparated_prefix_literals.stderr
new file mode 100644
index 000000000..ab2f75e0c
--- /dev/null
+++ b/src/tools/clippy/tests/ui/unseparated_prefix_literals.stderr
@@ -0,0 +1,63 @@
+error: integer type suffix should be separated by an underscore
+ --> $DIR/unseparated_prefix_literals.rs:24:18
+ |
+LL | let _fail1 = 1234i32;
+ | ^^^^^^^ help: add an underscore: `1234_i32`
+ |
+ = note: `-D clippy::unseparated-literal-suffix` implied by `-D warnings`
+
+error: integer type suffix should be separated by an underscore
+ --> $DIR/unseparated_prefix_literals.rs:25:18
+ |
+LL | let _fail2 = 1234u32;
+ | ^^^^^^^ help: add an underscore: `1234_u32`
+
+error: integer type suffix should be separated by an underscore
+ --> $DIR/unseparated_prefix_literals.rs:26:18
+ |
+LL | let _fail3 = 1234isize;
+ | ^^^^^^^^^ help: add an underscore: `1234_isize`
+
+error: integer type suffix should be separated by an underscore
+ --> $DIR/unseparated_prefix_literals.rs:27:18
+ |
+LL | let _fail4 = 1234usize;
+ | ^^^^^^^^^ help: add an underscore: `1234_usize`
+
+error: integer type suffix should be separated by an underscore
+ --> $DIR/unseparated_prefix_literals.rs:28:18
+ |
+LL | let _fail5 = 0x123isize;
+ | ^^^^^^^^^^ help: add an underscore: `0x123_isize`
+
+error: float type suffix should be separated by an underscore
+ --> $DIR/unseparated_prefix_literals.rs:32:19
+ |
+LL | let _failf1 = 1.5f32;
+ | ^^^^^^ help: add an underscore: `1.5_f32`
+
+error: float type suffix should be separated by an underscore
+ --> $DIR/unseparated_prefix_literals.rs:33:19
+ |
+LL | let _failf2 = 1f32;
+ | ^^^^ help: add an underscore: `1_f32`
+
+error: integer type suffix should be separated by an underscore
+ --> $DIR/unseparated_prefix_literals.rs:16:9
+ |
+LL | 42usize
+ | ^^^^^^^ help: add an underscore: `42_usize`
+...
+LL | let _ = lit_from_macro!();
+ | ----------------- in this macro invocation
+ |
+ = note: this error originates in the macro `lit_from_macro` (in Nightly builds, run with -Z macro-backtrace for more info)
+
+error: integer type suffix should be separated by an underscore
+ --> $DIR/unseparated_prefix_literals.rs:41:16
+ |
+LL | assert_eq!(4897u32, 32223);
+ | ^^^^^^^ help: add an underscore: `4897_u32`
+
+error: aborting due to 9 previous errors
+