blob: 8234ba582db48dca9d5bb0ef6a2900fd386f52f4 (
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 m_fun() {}
|