mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
13 lines
328 B
Rust
13 lines
328 B
Rust
// build-fail
|
|
|
|
//
|
|
// error-pattern: entry symbol `main` declared multiple times
|
|
|
|
// FIXME https://github.com/rust-lang/rust/issues/59774
|
|
// normalize-stderr-test "thread.*panicked.*Metadata module not compiled.*\n" -> ""
|
|
// normalize-stderr-test "note:.*RUST_BACKTRACE=1.*\n" -> ""
|
|
#![allow(warnings)]
|
|
|
|
#[no_mangle]
|
|
fn main(){}
|