summary refs log tree commit diff
path: root/src/test/compile-fail/import.rs
blob: b789a25e7a7f97d1b9ae1a7d80219457214fc2c1 (plain)
1
2
3
4
5
6
7
// error-pattern: unresolved import
import zed::bar;
import zed::baz;
mod zed {
    fn bar() { #debug("bar"); }
}
fn main(args: [str]) { bar(); }