mirror of
https://git.proxmox.com/git/rustc
synced 2026-03-27 14:23:24 +00:00
9 lines
83 B
Rust
9 lines
83 B
Rust
struct Foo;
|
|
impl Foo {
|
|
fn bar() { foobar::ok(); }
|
|
}
|
|
|
|
fn main() {
|
|
Foo::bar();
|
|
}
|