summary refs log tree commit diff
path: root/src/test/ui/main-wrong-location.rs
blob: d7ed5128195e98aaa6040a5a51152db7ba10d9e5 (plain)
1
2
3
4
5
mod m {
    // An inferred main entry point (that doesn't use #[main])
    // must appear at the top of the crate
    fn main() { }
}