]> git.lizzy.rs Git - rust.git/blob - src/test/ui/chalkify/chalk_initial_program.stderr
Auto merge of #93805 - petrochenkov:doclinkself, r=camelid,GuillaumeGomez
[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    = help: the following implementations were found:
8              <i32 as Foo>
9              <u32 as Foo>
10 note: required by a bound in `gimme`
11   --> $DIR/chalk_initial_program.rs:9:13
12    |
13 LL | fn gimme<F: Foo>() { }
14    |             ^^^ required by this bound in `gimme`
15
16 error: aborting due to previous error
17
18 For more information about this error, try `rustc --explain E0277`.