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