f459acc45d
resolve wasn't checking that a `use` referred to a public item. r=brson
10 lines
122 B
Rust
10 lines
122 B
Rust
use zoo::fly; //~ ERROR failed to resolve import
|
|
|
|
mod zoo {
|
|
priv type fly = ();
|
|
priv fn fly() {}
|
|
}
|
|
|
|
|
|
fn main() {}
|