]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/issues/issue-10412.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / issues / issue-10412.stderr
index d7a4bf4f21f18dc946084e62b64fa2ce0796d2f8..2a6e2414593aa4145e89f77dcf1bcd2ec92c7f19 100644 (file)
@@ -55,8 +55,7 @@ LL | trait Serializable<'self, T> {
 LL | impl<'self> Serializable<str> for &'self str {
    |             ^^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time
    |
-   = help: the trait `std::marker::Sized` is not implemented for `str`
-   = note: to learn more, visit <https://doc.rust-lang.org/book/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait>
+   = help: the trait `Sized` is not implemented for `str`
 help: consider relaxing the implicit `Sized` restriction
    |
 LL | trait Serializable<'self, T: ?Sized> {