summaryrefslogtreecommitdiffstats
path: root/src/test/ui/duplicate/dupe-symbols-8.rs
blob: ce7fa24a9fe6b5e5359e34fd5c0faf13c775e916 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// build-fail
// error-pattern: entry symbol `main` declared multiple times
//
// See #67946.

#![allow(warnings)]
fn main() {
    extern "Rust" {
     fn main();
    }
    unsafe { main(); }
}