diff options
Diffstat (limited to 'tests/ui/main-wrong-location.rs')
-rw-r--r-- | tests/ui/main-wrong-location.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/ui/main-wrong-location.rs b/tests/ui/main-wrong-location.rs new file mode 100644 index 000000000..d7deeaed9 --- /dev/null +++ b/tests/ui/main-wrong-location.rs @@ -0,0 +1,5 @@ +mod m { + // An inferred main entry point + // must appear at the top of the crate + fn main() { } +} //~ ERROR `main` function not found |