blob: 362d5925c70859ee8359f2c2568ac739983febc6 [file] [log] [blame]
//@ run-pass
struct Foo;
impl Foo {
fn first() {}
}
impl Foo {
fn second() {}
}
pub fn main() {
Foo::first();
Foo::second();
}