Home | History | Annotate | Download | only in Sema
      1 // RUN: %clang_cc1 -fsyntax-only -verify %s
      2 // expected-no-diagnostics
      3 
      4 typedef int unary_int_func(int arg);
      5 unary_int_func add_one;
      6 
      7 int add_one(int arg) {
      8   return arg + 1;
      9 }
     10