From 698f8c2f01ea549d77d7dc3338a12e04c11057b9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:02:58 +0200 Subject: Adding upstream version 1.64.0+dfsg1. Signed-off-by: Daniel Baumann --- ...280-expected-float-found-integer-literal.stderr | 49 ++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 src/test/ui/did_you_mean/issue-53280-expected-float-found-integer-literal.stderr (limited to 'src/test/ui/did_you_mean/issue-53280-expected-float-found-integer-literal.stderr') 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 new file mode 100644 index 000000000..6f853ccab --- /dev/null +++ b/src/test/ui/did_you_mean/issue-53280-expected-float-found-integer-literal.stderr @@ -0,0 +1,49 @@ +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`. -- cgit v1.2.3