Skip to content

Instantly share code, notes, and snippets.

@iggyvolz
Last active November 19, 2019 18:28
Show Gist options
  • Save iggyvolz/e06af622e8c35adb11a1bb6be25fcf32 to your computer and use it in GitHub Desktop.
Save iggyvolz/e06af622e8c35adb11a1bb6be25fcf32 to your computer and use it in GitHub Desktop.
Test case for phan/phan#3524
<?php
function get_thing_might_be_null():?int
{
return 7;
}
{
if($foo = get_thing_might_be_null() && $foo > 5) {
echo "hello world";
}
}
{
if($foo = get_thing_might_be_null()) {
if($foo>5) {
echo "hello world";
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment