mirror of
https://github.com/php-win-ext/php-memcached.git
synced 2026-04-24 17:28:12 +02:00
15 lines
297 B
PHP
15 lines
297 B
PHP
--TEST--
|
|
Test cloning
|
|
--SKIPIF--
|
|
<?php if (!extension_loaded("memcached")) print "skip"; ?>
|
|
--FILE--
|
|
<?php
|
|
$s = new stdClass();
|
|
$m = new Memcached();
|
|
|
|
$s = clone $s;
|
|
$m = clone $m;
|
|
|
|
echo "GOT HERE";
|
|
--EXPECTF--
|
|
Fatal error: Trying to clone an uncloneable object of class Memcached in %s on line %d
|