summaryrefslogtreecommitdiff
path: root/Zend/tests/traits/methods_002.phpt
blob: 4ed64c1a55a64e2799a40ea93f5be5c0327affc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
--TEST--
Testing collision with magic methods
--FILE--
<?php

trait foo {	
	public function __clone() {
		var_dump(__FUNCTION__);
	}
}

trait baz {
	public function __clone() {
		var_dump(__FUNCTION__);
	}
}

class bar {
	use foo;
	use baz;
}

$o = new bar;
var_dump(clone $o);

?>
--EXPECTF--
Fatal error: Trait method __clone has not been applied, because there are collisions with other trait methods on bar in %s on line %d