rust/src/test/compile-fail/issue-3993-3.rs

10 lines
122 B
Rust
Raw Normal View History

use zoo::fly; //~ ERROR failed to resolve import
mod zoo {
priv type fly = ();
priv fn fly() {}
}
fn main() {}