blob: a5c5c7bb13eda1e7af0de283ee119f853d91b7d1 [file] [edit]
//! Regression test for <https://github.com/rust-lang/rust/issues/4265>.
//! Test method which calls duplicate method on self doesn't ICE.
struct Foo {
baz: usize
}
impl Foo {
fn bar() {
Foo { baz: 0 }.bar();
//~^ ERROR: no method named `bar` found
}
fn bar() { //~ ERROR duplicate definitions
}
}
fn main() {}