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

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