8 lines
90 B
Rust
8 lines
90 B
Rust
#![feature(imported_main)]
|
|
|
|
mod foo {
|
|
pub(crate) fn bar() {}
|
|
}
|
|
|
|
use foo::bar as main;
|