about summary refs log tree commit diff
path: root/tests/ui/entry-point/imported_main_from_inner_mod.rs
blob: cede1766118dd58a463b746271a351af4831bcbf (plain)
1
2
3
4
5
6
7
8
//@ run-pass

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