]> git.lizzy.rs Git - rust.git/blob - src/test/ui/chalkify/chalk_initial_program.stderr
Merge commit '1411a98352ba6bee8ba3b0131c9243e5db1e6a2e' into sync_cg_clif-2021-12-31
[rust.git] / src / test / ui / chalkify / chalk_initial_program.stderr
1 error[E0277]: the trait bound `f32: Foo` is not satisfied
2   --> $DIR/chalk_initial_program.rs:15:13
3    |
4 LL |     gimme::<f32>();
5    |             ^^^ the trait `Foo` is not implemented for `f32`
6    |
7 note: required by a bound in `gimme`
8   --> $DIR/chalk_initial_program.rs:9:13
9    |
10 LL | fn gimme<F: Foo>() { }
11    |             ^^^ required by this bound in `gimme`
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0277`.