]> git.proxmox.com Git - rustc.git/blame - src/test/ui/suggestions/issue-90974.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / suggestions / issue-90974.stderr
CommitLineData
3c0e092e
XL
1error[E0689]: can't call method `recip` on ambiguous numeric type `{float}`
2 --> $DIR/issue-90974.rs:2:25
3 |
4LL | println!("{}", (3.).recip());
5 | ^^^^^
6 |
7help: you must specify a concrete type for this numeric value, like `f32`
8 |
9LL | println!("{}", (3_f32).recip());
10 | ~~~~~
11
12error: aborting due to previous error
13
14For more information about this error, try `rustc --explain E0689`.