summaryrefslogtreecommitdiffstats
path: root/src/test/ui/did_you_mean/issue-53280-expected-float-found-integer-literal.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 /src/test/ui/did_you_mean/issue-53280-expected-float-found-integer-literal.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 'src/test/ui/did_you_mean/issue-53280-expected-float-found-integer-literal.stderr')
-rw-r--r--src/test/ui/did_you_mean/issue-53280-expected-float-found-integer-literal.stderr49
1 files changed, 0 insertions, 49 deletions
diff --git a/src/test/ui/did_you_mean/issue-53280-expected-float-found-integer-literal.stderr b/src/test/ui/did_you_mean/issue-53280-expected-float-found-integer-literal.stderr
deleted file mode 100644
index 6f853ccab..000000000
--- a/src/test/ui/did_you_mean/issue-53280-expected-float-found-integer-literal.stderr
+++ /dev/null
@@ -1,49 +0,0 @@
-error[E0308]: mismatched types
- --> $DIR/issue-53280-expected-float-found-integer-literal.rs:2:24
- |
-LL | let sixteen: f32 = 16;
- | --- ^^
- | | |
- | | expected `f32`, found integer
- | | help: use a float literal: `16.0`
- | expected due to this
-
-error[E0308]: mismatched types
- --> $DIR/issue-53280-expected-float-found-integer-literal.rs:5:38
- |
-LL | let a_million_and_seventy: f64 = 1_000_070;
- | --- ^^^^^^^^^
- | | |
- | | expected `f64`, found integer
- | | help: use a float literal: `1_000_070.0`
- | expected due to this
-
-error[E0308]: mismatched types
- --> $DIR/issue-53280-expected-float-found-integer-literal.rs:8:30
- |
-LL | let negative_nine: f32 = -9;
- | --- ^^
- | | |
- | | expected `f32`, found integer
- | | help: use a float literal: `-9.0`
- | expected due to this
-
-error[E0308]: mismatched types
- --> $DIR/issue-53280-expected-float-found-integer-literal.rs:15:30
- |
-LL | let sixteen_again: f64 = 0x10;
- | --- ^^^^ expected `f64`, found integer
- | |
- | expected due to this
-
-error[E0308]: mismatched types
- --> $DIR/issue-53280-expected-float-found-integer-literal.rs:17:30
- |
-LL | let and_once_more: f32 = 0o20;
- | --- ^^^^ expected `f32`, found integer
- | |
- | expected due to this
-
-error: aborting due to 5 previous errors
-
-For more information about this error, try `rustc --explain E0308`.