diff options
Diffstat (limited to 'tests/ui/issues/issue-29181.rs')
-rw-r--r-- | tests/ui/issues/issue-29181.rs | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/ui/issues/issue-29181.rs b/tests/ui/issues/issue-29181.rs deleted file mode 100644 index 70e5bc019..000000000 --- a/tests/ui/issues/issue-29181.rs +++ /dev/null @@ -1,9 +0,0 @@ -// 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 -} |