add test for bug #36337

This commit is contained in:
Antony Dovgal 2006-02-14 09:46:16 +00:00
parent 1a170a3de2
commit c65d61a301

View File

@ -0,0 +1,28 @@
--TEST--
Bug #36337 (ReflectionProperty fails to return correct visibility)
--FILE--
<?php
abstract class enum {
protected $_values;
public function __construct() {
$property = new ReflectionProperty(get_class($this),'_values');
var_dump($property->isProtected());
}
}
final class myEnum extends enum {
public $_values = array(
0 => 'No value',
);
}
$x = new myEnum();
echo "Done\n";
?>
--EXPECT--
bool(false)
Done