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