Why does the following compile in GCC 4.8 (g++
)? Isn\'t it completely ill-formed?
void test(int x)
{
return test(3);
}
int main() {}
That's allowed by the standard (§6.6.3/3)
A return statement with an expression of type void can be used only in functions with a return type of cv void; the expression is evaluated just before the function returns to its caller.
As to why GCC allows it - sure because the Standard requires it to be valid. Building the transitive closure to the rationale of the rule in the Standard, I'm pretty sure that GCC allows this because it's useful in the event of templates
template<typename F>
typename std::result_of<F()>::type call(F f) {
return f();
}
int main() {
std::cout << call([]{ return 42; }) << std::endl;
call([]{ std::cout << "I'm just an outputtor!" << std::endl; });
}
As you see, call
did not need to do a special case for void
in the return statement. Sort of similar to how x.~T()
is allowed even if T
ends up as int
.