]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issue-41652/issue_41652.stderr
Auto merge of #47251 - rkruppe:rm-simd-attr, r=eddyb
[rust.git] / src / test / ui / issue-41652 / issue_41652.stderr
1 error[E0689]: can't call method `f` on ambiguous numeric type `{integer}`
2   --> $DIR/issue_41652.rs:19:11
3    |
4 19 |         3.f()
5    |           ^
6 help: you must specify a concrete type for this numeric value, like `i32`
7    |
8 19 |         3_i32.f()
9    |         ^^^^^
10
11 error: aborting due to previous error
12