xref: /aosp_15_r20/external/clang/test/Analysis/PR12905.c (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 // RUN: %clang_cc1 -analyze -analyzer-checker=core %s
2 // PR12905
3 
4 void C(void);
5 
t(void)6 void t(void) {
7   C();
8 }
9