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
rustc 1.15.0-nightly (3bf2be9ce 2016-11-22)
error: A non-empty glob must import something with the glob's visibility
--> <anon>:3:13
|
3 | pub use super::*;
| ^^^^^^^^^
error: aborting due to previous error
This was intentional -- it was caused by #37127, which stabilized RFC 1560 (the error is described in the last paragraph of this section).
This error can always be fixed by removing the pub (i.e. pub use super::*; -> use super::*;).
We would have phased this in with a warning, but we found no breakage on crates.io when we measured it ~1 month ago. The pub use super::*; were probably added after we tested for breakage but before #37127 landed.
The following program compiles on:
but does not compile on:
Error:
Tested both locally and on https://play.rust-lang.org/.
I could not find any mention of this here or here.
The text was updated successfully, but these errors were encountered: