xref: /PHP-5.5/Zend/tests/errmsg_034.phpt (revision 0f0fe9c9)
1--TEST--
2errmsg: __clone() cannot be static
3--FILE--
4<?php
5
6class test {
7
8	static function __clone() {
9	}
10}
11
12echo "Done\n";
13?>
14--EXPECTF--
15Fatal error: Clone method test::__clone() cannot be static in %s on line %d
16