1 2 3 4 5 6 7 8 9
use zed::bar; mod zed { #[legacy_exports]; fn bar() { debug!("bar"); } } fn main() { bar(); }