blob: ff66d35a1ba6d9c6914022159936dd4233550700 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 %s -ast-print
Chris Lattner0d6ca112007-12-03 21:43:25 +00002
3typedef void func_typedef();
4func_typedef xxx;
5
Chris Lattnerec584d62007-12-06 17:20:20 +00006typedef void func_t(int x);
7func_t a;
Chris Lattner0d6ca112007-12-03 21:43:25 +00008