summaryrefslogtreecommitdiffstats
path: root/third_party/python/gyp/test/mac/objc-arc/mm-file-arc-weak.mm
blob: f9d4b6759a3afceb1972046f402bb78569d94827 (plain)
1
2
3
4
5
6
7
8
9
#if __has_feature(objc_arc)
#error "ObjC++ files without CLANG_ENABLE_OBJC_ARC should not be ARC'd!"
#endif

#if !__has_feature(objc_arc_weak)
#error "With CLANG_ENABLE_OBJC_WEAK, weak references should be enabled."
#endif

void mm_fun() {}