]> git.lizzy.rs Git - rust.git/blob - tests/ui/chalkify/chalk_initial_program.stderr
Rollup merge of #106992 - joboet:alloc_remove_box_syntax, r=thomcc
[rust.git] / tests / 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 other types implement trait `Foo`:
8              i32
9              u32
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`.