summaryrefslogtreecommitdiff
path: root/deps/gyp/test/mac/objc-arc/cc-file.cc
diff options
context:
space:
mode:
Diffstat (limited to 'deps/gyp/test/mac/objc-arc/cc-file.cc')
-rw-r--r--deps/gyp/test/mac/objc-arc/cc-file.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/deps/gyp/test/mac/objc-arc/cc-file.cc b/deps/gyp/test/mac/objc-arc/cc-file.cc
new file mode 100644
index 0000000000..95e14ea3e0
--- /dev/null
+++ b/deps/gyp/test/mac/objc-arc/cc-file.cc
@@ -0,0 +1,5 @@
+#if __has_feature(objc_arc)
+#error "C++ files shouldn't be ARC'd!"
+#endif
+
+void cc_fun() {}