rust/src/test/ui/main-wrong-location.rs
2021-04-16 13:04:02 +08:00

7 lines
144 B
Rust

mod m {
//~^ ERROR `main` function not found
// An inferred main entry point
// must appear at the top of the crate
fn main() { }
}