]> git.lizzy.rs Git - rust.git/blob - src/test/ui/osx-frameworks.rs
Merge commit '266e96785ab71834b917bf474f130a6d8fdecd4b' into sync_cg_clif-2022-10-23
[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: link kind `framework` is only supported on Apple targets
6
7 fn main() {}