bug62904.phpt 255 B

1234567891011121314151617
  1. --TEST--
  2. Bug #62904 (Crash when cloning an object which inherits SplFixedArray)
  3. --FILE--
  4. <?php
  5. class foo extends SplFixedArray {
  6. public function __construct($size) {
  7. }
  8. }
  9. $x = new foo(2);
  10. $z = clone $x;
  11. echo "No crash.";
  12. ?>
  13. --EXPECT--
  14. No crash.