Closed
Description
From my understanding, macro re-export is unstable and feature-gated, but macros are showing up in rust docs when, for example, I have:
#[macro_use]
extern crate log;
pub use log::*;
Which would seem to imply that they should be accessible from other crates, even though they can't.
rustc version:
rustc 1.17.0-nightly (134c4a0 2017-03-20)
cc @jseyfried