• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fsyntax-only -verify %s
2 
3 void test0() __attribute__((visibility("default")));
4 void test1() __attribute__((visibility("hidden")));
5 void test2() __attribute__((visibility("internal")));
6 
7 // rdar://problem/10753392
8 void test3() __attribute__((visibility("protected"))); // expected-warning {{target does not support 'protected' visibility; using 'default'}}
9 
10