summaryrefslogtreecommitdiff
path: root/Zend/tests/traits/methods_002.phpt
blob: 2a4215fb2cc52c79ad76e288f335fa0b80105fc1 (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