28 lines
407 B
Plaintext
28 lines
407 B
Plaintext
|
|
--TEST--
|
||
|
|
Bug #71275 (Bad method called on cloning an object having a trait)
|
||
|
|
--FILE--
|
||
|
|
<?php
|
||
|
|
|
||
|
|
trait MyTrait {
|
||
|
|
public function _() {
|
||
|
|
throw new RuntimeException('Should not be called');
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
class MyClass {
|
||
|
|
use MyTrait;
|
||
|
|
|
||
|
|
public function __clone() {
|
||
|
|
echo "I'm working hard to clone";
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
$instance = new MyClass();
|
||
|
|
clone $instance;
|
||
|
|
|
||
|
|
?>
|
||
|
|
--EXPECT--
|
||
|
|
I'm working hard to clone
|