diff options
Diffstat (limited to 'clang/test')
-rw-r--r-- | clang/test/Sema/attr-visibility.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/test/Sema/attr-visibility.c b/clang/test/Sema/attr-visibility.c index 499111f86cc..4996dca5be7 100644 --- a/clang/test/Sema/attr-visibility.c +++ b/clang/test/Sema/attr-visibility.c @@ -10,3 +10,7 @@ void test3() __attribute__((visibility("protected"))); // expected-warning {{tar struct __attribute__((visibility("hidden"))) test4; // expected-note {{previous attribute is here}} struct test4; struct __attribute__((visibility("default"))) test4; // expected-error {{visibility does not match previous declaration}} + +struct test5; +struct __attribute__((visibility("hidden"))) test5; // expected-note {{previous attribute is here}} +struct __attribute__((visibility("default"))) test5; // expected-error {{visibility does not match previous declaration}} |