Files
rust/tests/ui/fmt/ifmt-unimpl.stderr

25 lines
902 B
Plaintext
Raw Normal View History

error[E0277]: the trait bound `str: UpperHex` is not satisfied
2018-12-25 08:56:47 -07:00
--> $DIR/ifmt-unimpl.rs:2:21
2018-08-08 14:28:26 +02:00
|
LL | format!("{:X}", "3");
| ---- ^^^ the trait `UpperHex` is not implemented for `str`
2023-03-27 14:43:17 +02:00
| |
| required by this formatting parameter
2018-08-08 14:28:26 +02:00
|
= help: the following other types implement trait `UpperHex`:
&T
&mut T
NonZero<T>
Saturating<T>
Wrapping<T>
i128
i16
i32
and 9 others
= note: required for `&str` to implement `UpperHex`
2023-04-20 20:18:22 +02:00
= note: this error originates in the macro `$crate::__export::format_args` which comes from the expansion of the macro `format` (in Nightly builds, run with -Z macro-backtrace for more info)
2018-08-08 14:28:26 +02:00
error: aborting due to 1 previous error
2018-08-08 14:28:26 +02:00
For more information about this error, try `rustc --explain E0277`.