You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mod foo {mod bar {pubfnf(){}}pubfnbar(){}}// This should re-export bar in the value namespace; now, it complains that the module `bar` is private.pubuse foo::bar;// This re-exports bar in the value namespace as expected.pubuse foo::*;fnmain(){ bar::f()}