rust/tests/ui/issues/issue-41652/issue-41652.stderr
Nilstrieb 41e8d152dc Show number in error message even for one error
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
2023-11-24 19:15:52 +01:00

15 lines
382 B
Plaintext

error[E0689]: can't call method `f` on ambiguous numeric type `{integer}`
--> $DIR/issue-41652.rs:9: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 1 previous error
For more information about this error, try `rustc --explain E0689`.