rust/tests/ui/issues/issue-3993.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
107 B
Rust
Raw Normal View History

use zoo::fly; //~ ERROR: function `fly` is private
mod zoo {
2013-08-08 03:20:06 +00:00
fn fly() {}
}
fn main() {
fly();
}