rust/src/test/ui/osx-frameworks.rs
2018-12-25 21:08:33 -07:00

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() {
}