Sign in
rust
/
rust-lang
/
rust
/
refs/heads/lcnr/rustc-dev-guide
/
.
/
tests
/
ui
/
issues
/
issue-4265.rs
blob: 99b13283bc972f60fb58ec440fe360388d88dfdd [
file
] [
log
] [
blame
]
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
()
{}