summaryrefslogtreecommitdiffstats
path: root/tests/ui/ffi_const.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/ffi_const.rs')
-rw-r--r--tests/ui/ffi_const.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/ui/ffi_const.rs b/tests/ui/ffi_const.rs
index 7aeb5a49a..aa20a4d4c 100644
--- a/tests/ui/ffi_const.rs
+++ b/tests/ui/ffi_const.rs
@@ -3,3 +3,13 @@
#[ffi_const] //~ ERROR `#[ffi_const]` may only be used on foreign functions
pub fn foo() {}
+
+#[ffi_const] //~ ERROR `#[ffi_const]` may only be used on foreign functions
+macro_rules! bar {
+ () => ()
+}
+
+extern "C" {
+ #[ffi_const] //~ ERROR `#[ffi_const]` may only be used on foreign functions
+ static INT: i32;
+}