blob: a8988b029f4929254ded287a312100f614443cc3 [file] [log] [blame]
Daniel Dunbard7d5f022009-03-24 02:24:46 +00001// RUN: clang-cc %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