blob: 018f4bb7f07bf5bd109abde96e368b883f18485f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// build-fail
#![crate_type="rlib"]
#![allow(warnings)]
#[export_name="fail"]
static HELLO: u8 = 0;
#[export_name="fail"]
static HELLO_TWICE: u16 = 0;
//~^ symbol `fail` is already defined
|