]> git.lizzy.rs Git - rust.git/blob - src/test/ui/osx-frameworks.rs
Merge commit '0eff589afc83e21a03a168497bbab6b4dfbb4ef6' into clippyup
[rust.git] / src / test / ui / osx-frameworks.rs
1 // ignore-macos this is supposed to succeed on osx
2
3 #[link(name = "foo", kind = "framework")]
4 extern "C" {}
5 //~^^ ERROR: native frameworks are only available on macOS
6
7 fn main() {}