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

#if !__has_feature(objc_arc_weak)
#error "Weak references should always be enabled for ARC."
#endif

void mm_fun() {}