blob: 34b0411cfe08e8de79ddb6c8df847063991a2255 [file] [log] [blame]
Chris Lattner0d6ca112007-12-03 21:43:25 +00001// RUN: clang %s -ast-print
2
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