1 2 3 4 5 6 7 8 9 10 11
import baz::zed; import zed::bar; mod baz { mod zed { fn bar() { #debug("bar2"); } } } fn main() { bar(); }