diff options
Diffstat (limited to 'third_party/python/gyp/test/mac/objc-arc/c-file.c')
-rw-r--r-- | third_party/python/gyp/test/mac/objc-arc/c-file.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/third_party/python/gyp/test/mac/objc-arc/c-file.c b/third_party/python/gyp/test/mac/objc-arc/c-file.c new file mode 100644 index 0000000000..208935946f --- /dev/null +++ b/third_party/python/gyp/test/mac/objc-arc/c-file.c @@ -0,0 +1,5 @@ +#if __has_feature(objc_arc) || __has_feature(objc_arc_weak) +#error "C files shouldn't be ARC'd!" +#endif + +void c_fun() {} |