mirror of
https://git.proxmox.com/git/rustc
synced 2026-03-28 04:02:54 +00:00
11 lines
99 B
Rust
11 lines
99 B
Rust
struct Foo;
|
|
impl Foo {
|
|
fn bar() {
|
|
foobar::ok();
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
Foo::bar();
|
|
}
|