Skip to main content
Journey Uncommon Logo
JourneyUncommon
easyRustmodules and useSingle-choice MCQ

An item is declared without `pub` inside a child module. What can the parent module do with it?

mod inner { fn helper() {} pub fn run() { helper(); } } fn main() { inner::run(); // inner::helper(); // ??? }