Search Results

Found 1 results for "f283ad3844bffd858992f9c6bce6db7c" across all boards searching md5.

Anonymous /g/105570523#105600592
6/15/2025, 3:07:11 PM
typedef void (*none)();
typedef none (*func)();

none h()
{
exit(1);
}

func g()
{
return h;
}

func f()
{
return g;
}
I can't even get this to typecheck