2024-05-27 15:17:18 +02:00
|
|
|
//@ ignore-apple this is supposed to succeed on Apple platforms (though it won't necessarily link)
|
2013-11-30 11:39:55 -08:00
|
|
|
|
|
|
|
|
#[link(name = "foo", kind = "framework")]
|
2020-09-01 17:12:52 -04:00
|
|
|
extern "C" {}
|
2022-03-14 13:28:34 +03:00
|
|
|
//~^^ ERROR: link kind `framework` is only supported on Apple targets
|
2013-11-30 11:39:55 -08:00
|
|
|
|
2020-09-01 17:12:52 -04:00
|
|
|
fn main() {}
|