]> git.lizzy.rs Git - rust.git/blob - src/test/ui/chalkify/chalk_initial_program.stderr
Merge commit '533f0fc81ab9ba097779fcd27c8f9ea12261fef5' into psimd
[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`.