mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 00:53:04 +00:00
19 lines
241 B
Rust
19 lines
241 B
Rust
//@ build-fail
|
|
|
|
//
|
|
#![crate_type="rlib"]
|
|
#![allow(warnings)]
|
|
|
|
pub mod a {
|
|
#[no_mangle]
|
|
pub extern "C" fn fail() {
|
|
}
|
|
}
|
|
|
|
pub mod b {
|
|
#[no_mangle]
|
|
pub extern "C" fn fail() {
|
|
//~^ symbol `fail` is already defined
|
|
}
|
|
}
|