]> git.proxmox.com Git - rustc.git/blob - src/test/ui/associated-const/associated-const-generic-obligations.stderr
New upstream version 1.39.0+dfsg1
[rustc.git] / src / test / ui / associated-const / associated-const-generic-obligations.stderr
1 error[E0326]: implemented const `FROM` has an incompatible type for trait
2 --> $DIR/associated-const-generic-obligations.rs:14:17
3 |
4 LL | const FROM: Self::Out;
5 | --------- type in trait
6 ...
7 LL | const FROM: &'static str = "foo";
8 | ^^^^^^^^^^^^ expected associated type, found reference
9 |
10 = note: expected type `<T as Foo>::Out`
11 found type `&'static str`
12 = note: consider constraining the associated type `<T as Foo>::Out` to `&'static str` or calling a method that returns `<T as Foo>::Out`
13 = note: for more information, visit https://doc.rust-lang.org/book/ch19-03-advanced-traits.html
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0326`.