Clang Project

clang_source_code/test/CodeGen/func-decl-cleanup.c
1// RUN: %clang_cc1 %s -emit-llvm -o -
2
3
4// PR2360
5typedef void fn_t();
6
7fn_t a,b;
8
9void b()
10{
11}
12
13