46e5e2f685
To make sure different test set-ups (check-fast) don't cause the tests to fail.
9 lines
122 B
Rust
9 lines
122 B
Rust
// error-pattern:unresolved import
|
|
import spam::{ham, eggs};
|
|
|
|
mod spam {
|
|
fn ham() { }
|
|
}
|
|
|
|
fn main() { ham(); eggs(); }
|