Fix a test case broken by my previous commit.

llvm-svn: 240977
This commit is contained in:
Douglas Gregor 2015-06-29 18:15:31 +00:00
parent 4c27d104c6
commit 55c4ef3e5a

View File

@ -7,8 +7,8 @@ _Nonnull int *ptr; // expected-warning{{type nullability specifier '_Nonnull' is
_Nonnull int *ptr2; // no-warning
#pragma clang diagnostic pop
#if __has_feature(nullability)
# error Nullability should not be supported in C under -pedantic -std=c99
#if !__has_feature(nullability)
# error Nullability should always be supported
#endif
#if !__has_extension(nullability)