rust/tests/ui/numeric/numeric-suffix/numeric-suffix-i64.stderr
Esteban Küber f0845adb0c Show diff suggestion format on verbose replacement
```
error[E0610]: `{integer}` is a primitive type and therefore doesn't have fields
  --> $DIR/attempted-access-non-fatal.rs:7:15
   |
LL |     let _ = 2.l;
   |               ^
   |
help: if intended to be a floating point literal, consider adding a `0` after the period and a `f64` suffix
   |
LL -     let _ = 2.l;
LL +     let _ = 2.0f64;
   |
```
2025-02-10 20:21:39 +00:00

213 lines
5.2 KiB
Plaintext

error[E0308]: mismatched types
--> $DIR/numeric-suffix-i64.rs:28:16
|
LL | foo::<i64>(42_usize);
| ---------- ^^^^^^^^ expected `i64`, found `usize`
| |
| arguments to this function are incorrect
|
note: function defined here
--> $DIR/numeric-suffix-i64.rs:3:4
|
LL | fn foo<N>(_x: N) {}
| ^^^ -----
help: change the type of the numeric literal from `usize` to `i64`
|
LL - foo::<i64>(42_usize);
LL + foo::<i64>(42_i64);
|
error[E0308]: mismatched types
--> $DIR/numeric-suffix-i64.rs:32:16
|
LL | foo::<i64>(42_u64);
| ---------- ^^^^^^ expected `i64`, found `u64`
| |
| arguments to this function are incorrect
|
note: function defined here
--> $DIR/numeric-suffix-i64.rs:3:4
|
LL | fn foo<N>(_x: N) {}
| ^^^ -----
help: change the type of the numeric literal from `u64` to `i64`
|
LL - foo::<i64>(42_u64);
LL + foo::<i64>(42_i64);
|
error[E0308]: mismatched types
--> $DIR/numeric-suffix-i64.rs:36:16
|
LL | foo::<i64>(42_u32);
| ---------- ^^^^^^ expected `i64`, found `u32`
| |
| arguments to this function are incorrect
|
note: function defined here
--> $DIR/numeric-suffix-i64.rs:3:4
|
LL | fn foo<N>(_x: N) {}
| ^^^ -----
help: change the type of the numeric literal from `u32` to `i64`
|
LL - foo::<i64>(42_u32);
LL + foo::<i64>(42_i64);
|
error[E0308]: mismatched types
--> $DIR/numeric-suffix-i64.rs:40:16
|
LL | foo::<i64>(42_u16);
| ---------- ^^^^^^ expected `i64`, found `u16`
| |
| arguments to this function are incorrect
|
note: function defined here
--> $DIR/numeric-suffix-i64.rs:3:4
|
LL | fn foo<N>(_x: N) {}
| ^^^ -----
help: change the type of the numeric literal from `u16` to `i64`
|
LL - foo::<i64>(42_u16);
LL + foo::<i64>(42_i64);
|
error[E0308]: mismatched types
--> $DIR/numeric-suffix-i64.rs:44:16
|
LL | foo::<i64>(42_u8);
| ---------- ^^^^^ expected `i64`, found `u8`
| |
| arguments to this function are incorrect
|
note: function defined here
--> $DIR/numeric-suffix-i64.rs:3:4
|
LL | fn foo<N>(_x: N) {}
| ^^^ -----
help: change the type of the numeric literal from `u8` to `i64`
|
LL - foo::<i64>(42_u8);
LL + foo::<i64>(42_i64);
|
error[E0308]: mismatched types
--> $DIR/numeric-suffix-i64.rs:48:16
|
LL | foo::<i64>(42_isize);
| ---------- ^^^^^^^^ expected `i64`, found `isize`
| |
| arguments to this function are incorrect
|
note: function defined here
--> $DIR/numeric-suffix-i64.rs:3:4
|
LL | fn foo<N>(_x: N) {}
| ^^^ -----
help: change the type of the numeric literal from `isize` to `i64`
|
LL - foo::<i64>(42_isize);
LL + foo::<i64>(42_i64);
|
error[E0308]: mismatched types
--> $DIR/numeric-suffix-i64.rs:53:16
|
LL | foo::<i64>(42_i32);
| ---------- ^^^^^^ expected `i64`, found `i32`
| |
| arguments to this function are incorrect
|
note: function defined here
--> $DIR/numeric-suffix-i64.rs:3:4
|
LL | fn foo<N>(_x: N) {}
| ^^^ -----
help: change the type of the numeric literal from `i32` to `i64`
|
LL - foo::<i64>(42_i32);
LL + foo::<i64>(42_i64);
|
error[E0308]: mismatched types
--> $DIR/numeric-suffix-i64.rs:57:16
|
LL | foo::<i64>(42_i16);
| ---------- ^^^^^^ expected `i64`, found `i16`
| |
| arguments to this function are incorrect
|
note: function defined here
--> $DIR/numeric-suffix-i64.rs:3:4
|
LL | fn foo<N>(_x: N) {}
| ^^^ -----
help: change the type of the numeric literal from `i16` to `i64`
|
LL - foo::<i64>(42_i16);
LL + foo::<i64>(42_i64);
|
error[E0308]: mismatched types
--> $DIR/numeric-suffix-i64.rs:61:16
|
LL | foo::<i64>(42_i8);
| ---------- ^^^^^ expected `i64`, found `i8`
| |
| arguments to this function are incorrect
|
note: function defined here
--> $DIR/numeric-suffix-i64.rs:3:4
|
LL | fn foo<N>(_x: N) {}
| ^^^ -----
help: change the type of the numeric literal from `i8` to `i64`
|
LL - foo::<i64>(42_i8);
LL + foo::<i64>(42_i64);
|
error[E0308]: mismatched types
--> $DIR/numeric-suffix-i64.rs:65:16
|
LL | foo::<i64>(42.0_f64);
| ---------- ^^^^^^^^ expected `i64`, found `f64`
| |
| arguments to this function are incorrect
|
note: function defined here
--> $DIR/numeric-suffix-i64.rs:3:4
|
LL | fn foo<N>(_x: N) {}
| ^^^ -----
help: change the type of the numeric literal from `f64` to `i64`
|
LL - foo::<i64>(42.0_f64);
LL + foo::<i64>(42i64);
|
error[E0308]: mismatched types
--> $DIR/numeric-suffix-i64.rs:69:16
|
LL | foo::<i64>(42.0_f32);
| ---------- ^^^^^^^^ expected `i64`, found `f32`
| |
| arguments to this function are incorrect
|
note: function defined here
--> $DIR/numeric-suffix-i64.rs:3:4
|
LL | fn foo<N>(_x: N) {}
| ^^^ -----
help: change the type of the numeric literal from `f32` to `i64`
|
LL - foo::<i64>(42.0_f32);
LL + foo::<i64>(42i64);
|
error: aborting due to 11 previous errors
For more information about this error, try `rustc --explain E0308`.