Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-41652
/
issue-41652.rs
blob: 34518d906a6771659c3cf1f81e7585de973a18b1 [
file
] [
log
] [
blame
] [
edit
]
//@ aux-build:issue-41652-b.rs
extern
crate issue_41652_b
;
struct
S
;
impl
issue_41652_b
::
Tr
for
S
{
fn
f
()
{
3.f
()
//~^ ERROR can't call method `f` on ambiguous numeric type `{integer}`
}
}
fn
main
()
{}