php-src/Zend/tests/bug72594.phpt
Nikita Popov 9ed2f4898b Don't disable opcache for generic tests
Even if the original issue only reproduces without opcache, we
should still allow running them with and without opcache.
2020-11-04 11:12:12 +01:00

32 lines
528 B
PHP

--TEST--
Bug #72594 (Calling an earlier instance of an included anonymous class fatals)
--FILE--
<?php
if (isset($runtime)) {
return new class {
public $bar;
public function bing($foo = null) {
if ($foo) $foo->bing();
}
};
}
$runtime = 1;
$oldFoo = require(__FILE__);
$newFoo = require(__FILE__);
var_dump(get_class_methods($oldFoo));
var_dump(get_object_vars($oldFoo));
$newFoo->bing($oldFoo);
?>
--EXPECT--
array(1) {
[0]=>
string(4) "bing"
}
array(1) {
["bar"]=>
NULL
}