blob: df8a993949908b4c45b194a5b5e7e64112a047e2 [file] [log] [blame]
Douglas Gregor04495c82009-02-24 01:23:02 +00001// RUN: clang -emit-llvm %s -o - |grep internal
2
3// C99 6.2.2p3
4// PR3425
5static void f(int x);
6
7void g0() {
8 f(5);
9}
10
11extern void f(int x) { } // still has internal linkage