• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // RUN: %clang_cc1 -emit-llvm %s -o - |grep internal
2 
3 // C99 6.2.2p3
4 // PR3425
5 static void f(int x);
6 
g0()7 void g0() {
8   f(5);
9 }
10 
f(int x)11 extern void f(int x) { } // still has internal linkage
12