The other day I did something like this:
void foo
{
}
void bar()
{
return foo();
}
when I meant to do this:
void foo
{
}
void bar()
{
foo();
return;
}
I was suprised that it worked. Is this legal?
Thanks.
void foo
{
}
void bar()
{
return foo();
}
when I meant to do this:
void foo
{
}
void bar()
{
foo();
return;
}
I was suprised that it worked. Is this legal?
Thanks.
Comment