blob: 491000b6510a8bb3c83d8230cd40644f2e6d3f66 [file] [log] [blame]
// run-pass
// pretty-expanded FIXME #23616
struct Foo;
impl Foo {
fn first() {}
}
impl Foo {
fn second() {}
}
pub fn main() {
Foo::first();
Foo::second();
}