modernc.org/cc@v1.0.1/testdata/issue4.c (about)

     1  typedef int int_t;
     2  
     3  // redeclaration error:
     4  int foo(void *ptr);
     5  typedef int foo(void *ptr);
     6  
     7  // redeclaration error:
     8  int_t foo2(void *ptr);
     9  typedef int_t foo2(void *ptr);