@@ -54,7 +54,7 @@ LL | const { read_n::<2>(1) }
5454 |
5555 = note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
5656
57- error[E0080]: va_arg value mismatch: value `-1_i32` cannot be represented by type u32
57+ error[E0080]: va_arg value mismatch: value `-1_i32` cannot be represented by type ` u32`
5858 --> $DIR/c-variadic-fail.rs:72:13
5959 |
6060LL | const { read_as::<u32>(-1i32) };
@@ -82,7 +82,7 @@ LL | const { read_as::<u32>(-1i32) };
8282 |
8383 = note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
8484
85- error[E0080]: va_arg value mismatch: value `-2147483648_i32` cannot be represented by type u32
85+ error[E0080]: va_arg value mismatch: value `-2147483648_i32` cannot be represented by type ` u32`
8686 --> $DIR/c-variadic-fail.rs:74:13
8787 |
8888LL | const { read_as::<u32>(i32::MIN) };
@@ -110,7 +110,7 @@ LL | const { read_as::<u32>(i32::MIN) };
110110 |
111111 = note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
112112
113- error[E0080]: va_arg value mismatch: value `4294967295_u32` cannot be represented by type i32
113+ error[E0080]: va_arg value mismatch: value `4294967295_u32` cannot be represented by type ` i32`
114114 --> $DIR/c-variadic-fail.rs:76:13
115115 |
116116LL | const { read_as::<i32>(u32::MAX) };
@@ -138,7 +138,7 @@ LL | const { read_as::<i32>(u32::MAX) };
138138 |
139139 = note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
140140
141- error[E0080]: va_arg value mismatch: value `2147483648_u32` cannot be represented by type i32
141+ error[E0080]: va_arg value mismatch: value `2147483648_u32` cannot be represented by type ` i32`
142142 --> $DIR/c-variadic-fail.rs:78:13
143143 |
144144LL | const { read_as::<i32>(i32::MAX as u32 + 1) };
@@ -166,7 +166,7 @@ LL | const { read_as::<i32>(i32::MAX as u32 + 1) };
166166 |
167167 = note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
168168
169- error[E0080]: va_arg value mismatch: value `18446744073709551615_u64` cannot be represented by type i64
169+ error[E0080]: va_arg value mismatch: value `18446744073709551615_u64` cannot be represented by type ` i64`
170170 --> $DIR/c-variadic-fail.rs:80:13
171171 |
172172LL | const { read_as::<i64>(u64::MAX) };
@@ -194,7 +194,7 @@ LL | const { read_as::<i64>(u64::MAX) };
194194 |
195195 = note: duplicate diagnostic emitted due to `-Z deduplicate-diagnostics=no`
196196
197- error[E0080]: va_arg value mismatch: value `9223372036854775808_u64` cannot be represented by type i64
197+ error[E0080]: va_arg value mismatch: value `9223372036854775808_u64` cannot be represented by type ` i64`
198198 --> $DIR/c-variadic-fail.rs:82:13
199199 |
200200LL | const { read_as::<i64>(i64::MAX as u64 + 1) };
0 commit comments