non_fragile_feature1.m revision cbf30b78bdbcc6755f9c624435a00a72a83892d7
1// RUN: clang-cc %s
2#ifndef __has_feature
3#error Should have __has_feature
4#endif
5
6#if __has_feature(objc_nonfragile_abi)
7#error Non-fragile ABI not used for compilation but feature macro set.
8#endif
9