rust/src/test/compile-fail/empty-linkname2.rs

9 lines
150 B
Rust
Raw Normal View History

// error-pattern:empty #[link_name] not allowed; use #[nolink].
// Issue #1326
#[link_name = ""]
#[nolink]
extern mod foo {
#[legacy_exports];
}