summaryrefslogtreecommitdiffstats
path: root/src/test/ui/entry-point/imported_main_from_inner_mod.rs
blob: 45750072a7f689177a613e26a13b1d69cb34c461 (plain)
1
2
3
4
5
6
7
8
9
// run-pass
#![feature(imported_main)]

pub mod foo {
    pub fn bar() {
        println!("Hello world!");
    }
}
use foo::bar as main;