1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/Zend/tests/traits/bug60809.phpt
2020-02-03 22:52:20 +01:00

37 lines
552 B
PHP

--TEST--
Bug #60809 (TRAITS - PHPDoc Comment Style Bug)
--FILE--
<?php
class ExampleParent {
private $hello_world = "hello foo\n";
public function foo() {
echo $this->hello_world;
}
}
class Example extends ExampleParent {
use ExampleTrait;
}
trait ExampleTrait {
/**
*
*/
private $hello_world = "hello bar\n";
/**
*
*/
public $prop = "ops";
public function bar() {
echo $this->hello_world;
}
}
$x = new Example();
$x->foo();
$x->bar();
?>
--EXPECT--
hello foo
hello bar