9 lines
178 B
Rust
9 lines
178 B
Rust
// ignore-macos this is supposed to succeed on osx
|
|
|
|
#[link(name = "foo", kind = "framework")]
|
|
extern {}
|
|
//~^^ ERROR: native frameworks are only available on macOS
|
|
|
|
fn main() {
|
|
}
|