diff options
author | Dimitry Andric <dim@FreeBSD.org> | 2015-01-18 16:23:48 +0000 |
---|---|---|
committer | Dimitry Andric <dim@FreeBSD.org> | 2015-01-18 16:23:48 +0000 |
commit | 06d4ba388873e6d1cfa9cd715a8935ecc8cd2097 (patch) | |
tree | 3eb853da77d46cc77c4b017525a422f9ddb1385b /test/Preprocessor/has_attribute.c | |
parent | 30d791273d07fac9c0c1641a0731191bca6e8606 (diff) |
Notes
Diffstat (limited to 'test/Preprocessor/has_attribute.c')
-rw-r--r-- | test/Preprocessor/has_attribute.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/Preprocessor/has_attribute.c b/test/Preprocessor/has_attribute.c index 5fe060e68d3c..0ef5b4857a38 100644 --- a/test/Preprocessor/has_attribute.c +++ b/test/Preprocessor/has_attribute.c @@ -48,3 +48,8 @@ int has_no_volatile_attribute(); #if !__has_attribute(dllexport) int does_not_have_dllexport(); #endif + +// CHECK: does_not_have_uuid +#if !__has_attribute(uuid) + int does_not_have_uuid +#endif |