rust/tests/ui/imports/import2-rpass.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
104 B
Rust
Raw Normal View History

2020-12-06 23:01:35 +00:00
// run-pass
use zed::bar;
mod zed {
pub fn bar() { println!("bar"); }
}
pub fn main() { bar(); }