2018-08-08 12:28:26 +00:00
|
|
|
error[E0599]: no method named `homura` found for type `{integer}` in the current scope
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/issue-29181.rs:6:7
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | 0.homura();
|
2019-09-06 19:00:07 +00:00
|
|
|
| ^^^^^^ method not found in `{integer}`
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2020-04-04 18:38:22 +00:00
|
|
|
error[E0689]: can't call method `exp` on ambiguous numeric type `{float}`
|
|
|
|
--> $DIR/issue-29181.rs:8:30
|
|
|
|
|
|
|
|
|
LL | let _ = |x: f64| x * 2.0.exp();
|
|
|
|
| ^^^
|
|
|
|
|
|
|
|
|
help: you must specify a concrete type for this numeric value, like `f32`
|
|
|
|
|
|
|
|
|
LL | let _ = |x: f64| x * 2.0_f32.exp();
|
2021-06-22 02:07:19 +00:00
|
|
|
| ~~~~~~~
|
2020-04-04 18:38:22 +00:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2020-04-04 18:38:22 +00:00
|
|
|
Some errors have detailed explanations: E0599, E0689.
|
|
|
|
For more information about an error, try `rustc --explain E0599`.
|