diff options
Diffstat (limited to 'test/Analysis/PR12905.c')
-rw-r--r-- | test/Analysis/PR12905.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/Analysis/PR12905.c b/test/Analysis/PR12905.c new file mode 100644 index 0000000..8f678d1 --- /dev/null +++ b/test/Analysis/PR12905.c @@ -0,0 +1,8 @@ +// RUN: %clang_cc1 -analyze -analyzer-checker=core %s +// PR12905 + +void C(void); + +void t(void) { + C(); +} |