diff options
Diffstat (limited to 'clang/test/Sema/attr-deprecated.c')
-rw-r--r-- | clang/test/Sema/attr-deprecated.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/clang/test/Sema/attr-deprecated.c b/clang/test/Sema/attr-deprecated.c index f9cdaf067c6..b26171b86b0 100644 --- a/clang/test/Sema/attr-deprecated.c +++ b/clang/test/Sema/attr-deprecated.c @@ -109,3 +109,5 @@ void test20() { f = test20_a; // expected-warning {{'test20_a' is deprecated}} f = test20_b; } + +char test21[__has_feature(attribute_deprecated_with_message) ? 1 : -1]; |