I'm not sure I entirely grok visibility rules, but the following seems to compile when I don't think it should. ``` priv mod foo { priv mod bar { pub fn f() {} } } fn main() { foo::bar::f(); } ```
I'm not sure I entirely grok visibility rules, but the following seems to compile when I don't think it should.