blob: 4aaf2bd29c5c7b2e2a347da74d333da1099057ee [file] [log] [blame]
//@ build-fail
//
#![crate_type="rlib"]
#![allow(warnings)]
#[export_name="fail"]
static HELLO: u8 = 0;
#[export_name="fail"]
pub fn b() {
//~^ ERROR symbol `fail` is already defined
}