503f75d08b
These names don't make sense now that we run both suites the same way.
20 linhas
310 B
PHP
20 linhas
310 B
PHP
<?php
|
|
|
|
/*
|
|
* This is a small test case for handling comparisons on null SSATmps
|
|
* that aren't isConst().
|
|
*/
|
|
function ar() { return null; }
|
|
function foo() {
|
|
$x = ar();
|
|
echo $x != true;
|
|
echo "\n";
|
|
echo $x == true;
|
|
echo "\n";
|
|
echo $x != false;
|
|
echo "\n";
|
|
echo $x == false;
|
|
echo "\n";
|
|
}
|
|
foo();
|