summary refs log tree commit diff
path: root/src/test/compile-fail/import-from-missing.rs
blob: a22c1ede9abcff6987ccfdd5f18f116539c2d3d6 (plain)
1
2
3
4
5
6
7
8
// error-pattern:unresolved
import spam::{ham, eggs};

mod spam {
    fn ham() { }
}

fn main() { ham(); eggs(); }