]> git.proxmox.com Git - rustc.git/blob - tests/ui/associated-consts/associated-const-generic-obligations.stderr
New upstream version 1.69.0+dfsg1
[rustc.git] / tests / ui / associated-consts / 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: &'static str = "foo";
5 | ^^^^^^^^^^^^ expected associated type, found `&'static str`
6 |
7 note: type in trait
8 --> $DIR/associated-const-generic-obligations.rs:10:17
9 |
10 LL | const FROM: Self::Out;
11 | ^^^^^^^^^
12 = note: expected associated type `<T as Foo>::Out`
13 found reference `&'static str`
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0326`.