9 lines
83 B
Rust
9 lines
83 B
Rust
|
struct Foo;
|
||
|
impl Foo {
|
||
|
fn bar() { foobar::ok(); }
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
Foo::bar();
|
||
|
}
|