|
|
|
|
|
by quibono
334 days ago
|
|
Just for clarity, since I didn't understand on first reading. int foo() {
int result = ({
if (some_condition)
return -1; // This returns from foo(), not just the statement expression
42;
});
// This line might never be reached
}
|
|