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
Yes that is a workaround but not a solution. It's rather unfriendly to arbitrarily nested modules as you'd end up with things like use super::super::super::*;. We allow importing items directly from the crate root, and we allow glob imports in other paths that are relative to the crate root, so missing the simple case of glob importing the crate root itself seems like an oversight.
The following does not compile.
Also tried
use ::*;
use {*};
anduse ::{*};
.I'm not sure why we don't support this case. Maybe nobody felt anyone would ever use it? It sure would be nice to have in winapi.
The text was updated successfully, but these errors were encountered: