summary refs log tree commit diff
path: root/src/test/ui/duplicate/dupe-symbols-1.rs
blob: f943c7b1110ccf0ec249ed1b95add65864fe48a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//
#![crate_type="rlib"]
#![allow(warnings)]

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

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