if ( !isset( $hello ) ) {
return;
}
echo $hello;
results in an undefined variable error on both lines, but it should only give an error on the first line, since if the variable passes this check it is in fact not undefined.
Afair this was working correctly in earlier versions