46e5e2f685
To make sure different test set-ups (check-fast) don't cause the tests to fail.
8 lines
142 B
Rust
8 lines
142 B
Rust
// error-pattern: unresolved import
|
|
import zed::bar;
|
|
import zed::baz;
|
|
mod zed {
|
|
fn bar() { log "bar"; }
|
|
}
|
|
fn main(args: [str]) { bar(); }
|