mirror of
https://github.com/php/php-src.git
synced 2026-04-28 18:53:33 +02:00
7aacc705d0
Closes GH-5958
20 lines
240 B
PHP
20 lines
240 B
PHP
--TEST--
|
|
testing traits in anon classes
|
|
--FILE--
|
|
<?php
|
|
|
|
trait Foo {
|
|
public function someMethod() {
|
|
return "bar";
|
|
}
|
|
}
|
|
|
|
$anonClass = new class {
|
|
use Foo;
|
|
};
|
|
|
|
var_dump($anonClass->someMethod());
|
|
?>
|
|
--EXPECT--
|
|
string(3) "bar"
|