mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 21:47:04 +00:00
11 lines
195 B
Rust
11 lines
195 B
Rust
//@ build-fail
|
|
//@ ignore-wasi wasi does different things with the `main` symbol
|
|
|
|
//
|
|
//@ error-pattern: entry symbol `main` declared multiple times
|
|
|
|
#![allow(warnings)]
|
|
|
|
#[no_mangle]
|
|
fn main(){}
|