blob: 3f76b25692cf194df1a9c9a9ff0154013b61f768 [file] [log] [blame]
error[E0689]: can't call method `f` on ambiguous numeric type `{integer}`
--> $DIR/issue_41652.rs:19:11
|
LL | 3.f()
| ^
help: you must specify a concrete type for this numeric value, like `i32`
|
LL | 3_i32.f()
| ^^^^^
error: aborting due to previous error
For more information about this error, try `rustc --explain E0689`.