blob: 499111f86ccdf3b59940c0a10478f6880d7f4525 [file] [log] [blame]
John McCall41887602012-01-29 01:20:30 +00001// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fsyntax-only -verify %s
2
3void test0() __attribute__((visibility("default")));
4void test1() __attribute__((visibility("hidden")));
5void test2() __attribute__((visibility("internal")));
6
7// rdar://problem/10753392
8void test3() __attribute__((visibility("protected"))); // expected-warning {{target does not support 'protected' visibility; using 'default'}}
9
Rafael Espindola45a0b262012-04-26 01:26:03 +000010struct __attribute__((visibility("hidden"))) test4; // expected-note {{previous attribute is here}}
Rafael Espindola4e31b4d2012-05-01 20:58:29 +000011struct test4;
Rafael Espindola45a0b262012-04-26 01:26:03 +000012struct __attribute__((visibility("default"))) test4; // expected-error {{visibility does not match previous declaration}}