rust/tests/ui/duplicate/dupe-symbols-1.rs
2024-02-16 20:02:50 +00:00

15 lines
175 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
}