about summary refs log tree commit diff
path: root/src/test/compile-fail/issue-3993.rs
blob: e4a192bcb285741c75042cdbedc31ef9b336a56f (plain)
1
2
3
4
5
6
7
8
use zoo::fly; //~ ERROR failed to resolve import

mod zoo {
    priv fn fly() {}
}


fn main() {}