blob: cf64df2bf880fd5918e18265be0ce6868643d531 [file] [log] [blame]
John McCalld1e40d52011-10-02 01:16:38 +00001// RUN: %clang_cc1 %s
David Chisnallcbf30b72009-08-31 16:53:06 +00002#ifndef __has_feature
3#error Should have __has_feature
4#endif
5
6#if !__has_feature(objc_nonfragile_abi)
7#error Non-fragile ABI used for compilation but feature macro not set.
8#endif
Ted Kremenek6b15f8e2010-04-29 17:43:21 +00009
10#if !__has_feature(objc_weak_class)
11#error objc_weak_class should be enabled with nonfragile abi
12#endif