blob: 34518d906a6771659c3cf1f81e7585de973a18b1 [file] [log] [blame]
//@ 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() {}