28c4813920
Fixes #51874.
14 lines
541 B
Plaintext
14 lines
541 B
Plaintext
error[E0689]: can't call method `pow` on ambiguous numeric type `{float}`
|
|
--> $DIR/issue-51874.rs:12:19
|
|
|
|
|
LL | let a = (1.0).pow(1.0); //~ ERROR can't call method `pow` on ambiguous numeric type
|
|
| ^^^
|
|
help: you must specify a concrete type for this numeric value, like `f32`
|
|
|
|
|
LL | let a = (1.0_f32).pow(1.0); //~ ERROR can't call method `pow` on ambiguous numeric type
|
|
| ^^^^^^^
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0689`.
|