summary refs log tree commit diff
path: root/src/test/compile-fail/empty-linkname2.rs
blob: faf283ef4a1d7177d2cb138cac919bd84186cdcc (plain)
1
2
3
4
5
6
7
8
// error-pattern:empty #[link_name] not allowed; use #[nolink].
// Issue #1326

#[link_name = ""]
#[nolink]
extern mod foo {
    #[legacy_exports];
}