blob: 5cf269582abcbc45f090600b7a0abb133cfa4f76 [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