mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-04 18:33:38 +00:00
15 lines
174 B
Rust
15 lines
174 B
Rust
// build-fail
|
|
|
|
//
|
|
#![crate_type="rlib"]
|
|
#![allow(warnings)]
|
|
|
|
#[export_name="fail"]
|
|
pub fn a() {
|
|
}
|
|
|
|
#[export_name="fail"]
|
|
pub fn b() {
|
|
//~^ symbol `fail` is already defined
|
|
}
|