Closed
Description
It'd be really nice if we could do something like:
#[cfg(feature = "abc")]
{
extern crate x;
extern crate y;
mod z;
use z::{a, b, c};
}
Right now, we have to attach the attribute to every item, which is a bit redundant. We can put things in a module and then re-export them, but it'd be nice if we could do something like this instead.