summaryrefslogtreecommitdiffstats
path: root/tests/ui/issues/issue-51874.stderr
blob: 5be3695dd4548a845dfa2c295215a52caaa4b6be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error[E0689]: can't call method `pow` on ambiguous numeric type `{float}`
  --> $DIR/issue-51874.rs:2:19
   |
LL |     let a = (1.0).pow(1.0);
   |                   ^^^
   |
help: you must specify a concrete type for this numeric value, like `f32`
   |
LL |     let a = (1.0_f32).pow(1.0);
   |              ~~~~~~~

error: aborting due to 1 previous error

For more information about this error, try `rustc --explain E0689`.