1 // RUN: %clang_cc1 %s -ast-print 2 3 typedef void func_typedef(); 4 func_typedef xxx; 5 6 typedef void func_t(int x); 7 func_t a; 8 9