summaryrefslogtreecommitdiffstats
path: root/src/test/ui/duplicate/dupe-symbols-1.rs
blob: 28e329b56caf71c0b48c276fb42a7a9d94b98c89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// build-fail

//
#![crate_type="rlib"]
#![allow(warnings)]

#[export_name="fail"]
pub fn a() {
}

#[export_name="fail"]
pub fn b() {
//~^ symbol `fail` is already defined
}