]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/float-literal-inference-restrictions.stderr
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / float-literal-inference-restrictions.stderr
index 08513507ecf9604d2ff6881be705540c52395292..62ca8dc77294b446fe6fc0f583df9f46ce02d80a 100644 (file)
@@ -2,19 +2,19 @@ error[E0308]: mismatched types
   --> $DIR/float-literal-inference-restrictions.rs:2:18
    |
 LL |     let x: f32 = 1;
-   |                  ^
-   |                  |
-   |                  expected f32, found integer
-   |                  help: use a float literal: `1.0`
-   |
-   = note: expected type `f32`
-              found type `{integer}`
+   |            ---   ^
+   |            |     |
+   |            |     expected `f32`, found integer
+   |            |     help: use a float literal: `1.0`
+   |            expected due to this
 
 error[E0308]: mismatched types
   --> $DIR/float-literal-inference-restrictions.rs:3:18
    |
 LL |     let y: f32 = 1f64;
-   |                  ^^^^ expected f32, found f64
+   |            ---   ^^^^ expected `f32`, found `f64`
+   |            |
+   |            expected due to this
    |
 help: change the type of the numeric literal from `f64` to `f32`
    |