]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-21596.stderr
New upstream version 1.43.0+dfsg1
[rustc.git] / src / test / ui / issues / issue-21596.stderr
CommitLineData
dfeec247 1error[E0599]: no method named `to_string` found for raw pointer `*const u8` in the current scope
dc9dc135
XL
2 --> $DIR/issue-21596.rs:4:22
3 |
4LL | println!("{}", z.to_string());
e1599b0c 5 | ^^^^^^^^^ method not found in `*const u8`
dc9dc135
XL
6 |
7 = 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
416331ca 8 = note: using `<*const T>::as_ref()` on a pointer which is unaligned or points to invalid or uninitialized memory is undefined behavior
dc9dc135 9 = note: the method `to_string` exists but the following trait bounds were not satisfied:
74b04a01
XL
10 `*const u8: std::fmt::Display`
11 which is required by `*const u8: std::string::ToString`
dc9dc135
XL
12
13error: aborting due to previous error
14
15For more information about this error, try `rustc --explain E0599`.