9 lines
83 B
Rust
Raw Normal View History

struct Foo;
impl Foo {
fn bar() { foobar::ok(); }
}
fn main() {
Foo::bar();
}