mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-02 19:06:05 +00:00
9 lines
85 B
Rust
9 lines
85 B
Rust
|
|
import zed::bar;
|
|
|
|
mod zed {
|
|
fn bar() { #debug("bar"); }
|
|
}
|
|
|
|
fn main() { bar(); }
|