Viewing File: /opt/alt/tests/alt-php82-pecl-gender_1.1.0-3.el8/tests/009.phpt

--TEST--
Test __clone() breakage
--SKIPIF--
<?php if (!extension_loaded('gender')) print 'skip'; ?>
--FILE--
<?php
$g = new Gender\Gender;

class Dummy { public $value = null; }

$a = new Dummy;
$b = clone $a;

var_dump($g, $a, $b); ?>
DONE
--EXPECT--
object(Gender\Gender)#1 (0) {
}
object(Dummy)#2 (1) {
  ["value"]=>
  NULL
}
object(Dummy)#3 (1) {
  ["value"]=>
  NULL
}
DONE
Back to Directory File Manager
<