blob: 70e5bc0192086e3ffb8890a47cab7e1e6ff77b00 (
plain)
1
2
3
4
5
6
7
8
9
|
// aux-build:issue-29181.rs
extern crate issue_29181 as foo;
fn main() {
0.homura(); //~ ERROR no method named `homura` found
// Issue #47759, detect existing method on the fundamental impl:
let _ = |x: f64| x * 2.0.exp(); //~ ERROR can't call method `exp` on ambiguous numeric type
}
|