about summary refs log tree commit diff
path: root/tests/ui/duplicate/dupe-symbols-1.rs
blob: 4e03d7c4ce5a7064f17d1e393d8aacef87495af0 (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() {
//~^ ERROR symbol `fail` is already defined
}