rust/tests/ui/fmt/ifmt-unknown-trait.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
706 B
Plaintext
Raw Normal View History

2018-08-08 12:28:26 +00:00
error: unknown format trait `notimplemented`
--> $DIR/ifmt-unknown-trait.rs:2:16
2018-08-08 12:28:26 +00:00
|
LL | format!("{:notimplemented}", "3");
| ^^^^^^^^^^^^^^
|
= note: the only appropriate formatting traits are:
- ``, which uses the `Display` trait
- `?`, which uses the `Debug` trait
- `e`, which uses the `LowerExp` trait
- `E`, which uses the `UpperExp` trait
- `o`, which uses the `Octal` trait
- `p`, which uses the `Pointer` trait
- `b`, which uses the `Binary` trait
- `x`, which uses the `LowerHex` trait
- `X`, which uses the `UpperHex` trait
2018-08-08 12:28:26 +00:00
error: aborting due to previous error