php-src/ext/reflection/tests/bug30856.phpt
2005-06-17 16:40:05 +00:00

21 lines
316 B
PHP
Executable File

--TEST--
Bug #30856 (ReflectionClass::getStaticProperties segfaults)
--FILE--
<?php
class bogus {
const C = 'test';
static $a = bogus::C;
}
$class = new ReflectionClass('bogus');
var_dump($class->getStaticProperties());
?>
===DONE===
--EXPECT--
array(1) {
["a"]=>
string(4) "test"
}
===DONE===