]> git.lizzy.rs Git - rust.git/blob - tests/ui/suggestions/issue-90974.stderr
Rollup merge of #106670 - albertlarsan68:check-docs-in-pr-ci, r=Mark-Simulacrum
[rust.git] / tests / ui / suggestions / issue-90974.stderr
1 error[E0689]: can't call method `recip` on ambiguous numeric type `{float}`
2   --> $DIR/issue-90974.rs:2:25
3    |
4 LL |     println!("{}", (3.).recip());
5    |                         ^^^^^
6    |
7 help: you must specify a concrete type for this numeric value, like `f32`
8    |
9 LL |     println!("{}", (3_f32).recip());
10    |                     ~~~~~
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0689`.