summaryrefslogtreecommitdiffstats
path: root/tests/ui/issues/issue-21596.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:18:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:18:58 +0000
commita4b7ed7a42c716ab9f05e351f003d589124fd55d (patch)
treeb620cd3f223850b28716e474e80c58059dca5dd4 /tests/ui/issues/issue-21596.stderr
parentAdding upstream version 1.67.1+dfsg1. (diff)
downloadrustc-a4b7ed7a42c716ab9f05e351f003d589124fd55d.tar.xz
rustc-a4b7ed7a42c716ab9f05e351f003d589124fd55d.zip
Adding upstream version 1.68.2+dfsg1.upstream/1.68.2+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/issues/issue-21596.stderr')
-rw-r--r--tests/ui/issues/issue-21596.stderr15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/ui/issues/issue-21596.stderr b/tests/ui/issues/issue-21596.stderr
new file mode 100644
index 000000000..a336d1b0e
--- /dev/null
+++ b/tests/ui/issues/issue-21596.stderr
@@ -0,0 +1,15 @@
+error[E0599]: `*const u8` doesn't implement `std::fmt::Display`
+ --> $DIR/issue-21596.rs:4:22
+ |
+LL | println!("{}", z.to_string());
+ | ^^^^^^^^^ `*const u8` cannot be formatted with the default formatter
+ |
+ = note: try using `<*const T>::as_ref()` to get a reference to the type behind the pointer: https://doc.rust-lang.org/std/primitive.pointer.html#method.as_ref
+ = note: using `<*const T>::as_ref()` on a pointer which is unaligned or points to invalid or uninitialized memory is undefined behavior
+ = note: the following trait bounds were not satisfied:
+ `*const u8: std::fmt::Display`
+ which is required by `*const u8: ToString`
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0599`.