]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-51874.stderr
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / issues / issue-51874.stderr
1 error[E0689]: can't call method `pow` on ambiguous numeric type `{float}`
2   --> $DIR/issue-51874.rs:12:19
3    |
4 LL |     let a = (1.0).pow(1.0); //~ ERROR can't call method `pow` on ambiguous numeric type
5    |                   ^^^
6 help: you must specify a concrete type for this numeric value, like `f32`
7    |
8 LL |     let a = (1.0_f32).pow(1.0); //~ ERROR can't call method `pow` on ambiguous numeric type
9    |              ^^^^^^^
10
11 error: aborting due to previous error
12
13 For more information about this error, try `rustc --explain E0689`.