blob: d8bac07e058da3278f528134c023b0949f0e4794 [file] [log] [blame]
error[E0326]: implemented const `FROM` has an incompatible type for trait
--> $DIR/associated-const-generic-obligations.rs:14:17
|
LL | const FROM: Self::Out;
| --------- type in trait
...
LL | const FROM: &'static str = "foo";
| ^^^^^^^^^^^^ expected associated type, found `&str`
|
= note: expected associated type `<T as Foo>::Out`
found reference `&'static str`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0326`.