]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/issues/issue-51874.stderr
Rollup merge of #62337 - Mark-Simulacrum:fix-cpu-usage-script, r=alexcrichton
[rust.git] / src / test / ui / issues / issue-51874.stderr
index 38c380c4bab80051f892b5c288d6ac290fda1d33..9b1a6bf2e12d67565ae967e071fcd9a6b02699e9 100644 (file)
@@ -1,11 +1,11 @@
 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); //~ ERROR can't call method `pow` on ambiguous numeric type
+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 can't call method `pow` on ambiguous numeric type
+LL |     let a = (1.0_f32).pow(1.0);
    |              ^^^^^^^
 
 error: aborting due to previous error