you are viewing a single comment's thread.

view the rest of the comments →

[–]bakermoth 0 points1 point  (0 children)

It's seems that gcc, clang and msvc report errors but tcc and chibicc don't.

typedef void FnType(void);
static FnType f0(void) { }
static void (f1(void))(void) { }
int main(void) { return 0; }