]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/associated-const/associated-const-generic-obligations.stderr
Remove E0308 note when primary label has all info
[rust.git] / src / test / ui / associated-const / associated-const-generic-obligations.stderr
index ca6118cb3ba985ccdddc905886186ed8c969727b..f2312cbaa06229b27b8c8190b531c5b603e10eb2 100644 (file)
@@ -5,10 +5,10 @@ LL |     const FROM: Self::Out;
    |                 --------- type in trait
 ...
 LL |     const FROM: &'static str = "foo";
-   |                 ^^^^^^^^^^^^ expected associated type, found reference
+   |                 ^^^^^^^^^^^^ expected associated type, found &str
    |
-   = note: expected type `<T as Foo>::Out`
-              found type `&'static str`
+   = note: expected associated type `<T as Foo>::Out`
+                    found reference `&'static str`
    = note: consider constraining the associated type `<T as Foo>::Out` to `&'static str` or calling a method that returns `<T as Foo>::Out`
    = note: for more information, visit https://doc.rust-lang.org/book/ch19-03-advanced-traits.html