//@ run-pass
struct Foo;
impl Foo {
fn first() {}
}
fn second() {}
pub fn main() {
Foo::first();
Foo::second();