Files
rust/tests/ui/duplicate/dupe-symbols-8.rs

13 lines
253 B
Rust

//@ build-fail
//@ ignore-wasi wasi does different things with the `main` symbol
//
// See #67946.
#![allow(warnings)]
fn main() { //~ ERROR entry symbol `main` declared multiple times
extern "Rust" {
fn main();
}
unsafe { main(); }
}