summaryrefslogtreecommitdiffstats
path: root/src/test/ui/fmt/ifmt-unknown-trait.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/fmt/ifmt-unknown-trait.stderr')
-rw-r--r--src/test/ui/fmt/ifmt-unknown-trait.stderr19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/test/ui/fmt/ifmt-unknown-trait.stderr b/src/test/ui/fmt/ifmt-unknown-trait.stderr
deleted file mode 100644
index 459432bf4..000000000
--- a/src/test/ui/fmt/ifmt-unknown-trait.stderr
+++ /dev/null
@@ -1,19 +0,0 @@
-error: unknown format trait `notimplemented`
- --> $DIR/ifmt-unknown-trait.rs:2:16
- |
-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
-
-error: aborting due to previous error
-