Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
duplicate
/
dupe-symbols-8.rs
blob: 258e91fa8c878e9a0cc605186dcd3074b2a63fbe [
file
] [
log
] [
blame
] [
edit
]
//@ build-fail
//@ error-pattern: entry symbol `main` declared multiple times
//@ ignore-wasi wasi does different things with the `main` symbol
//
// See #67946.
#![
allow
(
warnings
)]
fn
main
()
{
extern
"Rust"
{
fn
main
();
}
unsafe
{
main
();
}
}