granite-rust/src/test/ui/osx-frameworks.rs
2022-05-15 02:45:47 +03:00

7 lines
192 B
Rust

// ignore-macos this is supposed to succeed on osx
#[link(name = "foo", kind = "framework")]
extern "C" {}
//~^^ ERROR: link kind `framework` is only supported on Apple targets
fn main() {}