Revert "make hphpc able to use ini files"
[hiphop-php.git] / hphp / test / zend / bad / ext / standard / tests / serialize / bug35895.php
blob6f6e7185d5d917d409d81e655d1793d77ab89d8c
1 <?php
2 class Parents {
3 private $parents;
4 public function __sleep() {
5 return array("parents");
9 class Child extends Parents {
10 private $child;
11 public function __sleep() {
12 return array_merge(array("child"), parent::__sleep());
16 $obj = new Child();
17 serialize($obj);