1--TEST--
2errmsg: cannot call __clone() method on objects
3--FILE--
4<?php
5
6class test {
7 function __clone() {
8 }
9}
10
11$t = new test;
12$t->__clone();
13
14echo "Done\n";
15?>
16--EXPECTF--
17Fatal error: Cannot call __clone() method on objects - use 'clone $obj' instead in %s on line %d
18