about summary refs log tree commit diff
path: root/tests/ui/entry-point/imported_main_const_forbidden.rs
blob: c478e004603c056c41c5d5751be2e65d9e525bd9 (plain)
1
2
3
4
5
pub mod foo {
    pub const BAR: usize = 42;
}

use foo::BAR as main; //~ ERROR `main` function not found in crate