]> git.lizzy.rs Git - rust.git/blob - tests/ui/chalkify/impl_wf_2.stderr
Auto merge of #106458 - albertlarsan68:move-tests, r=jyn514
[rust.git] / tests / ui / chalkify / impl_wf_2.stderr
1 error[E0277]: the trait bound `f32: Foo` is not satisfied
2   --> $DIR/impl_wf_2.rs:25:17
3    |
4 LL |     type Item = f32;
5    |                 ^^^ the trait `Foo` is not implemented for `f32`
6    |
7    = help: the trait `Foo` is implemented for `i32`
8 note: required by a bound in `Bar::Item`
9   --> $DIR/impl_wf_2.rs:8:16
10    |
11 LL |     type Item: Foo;
12    |                ^^^ required by this bound in `Bar::Item`
13
14 error: aborting due to previous error
15
16 For more information about this error, try `rustc --explain E0277`.