14 lines
146 B
Plaintext
14 lines
146 B
Plaintext
|
|
--TEST--
|
||
|
|
New with anonymous class works
|
||
|
|
--FILE--
|
||
|
|
<?php
|
||
|
|
|
||
|
|
static $x = new class {};
|
||
|
|
|
||
|
|
var_dump($x);
|
||
|
|
|
||
|
|
?>
|
||
|
|
--EXPECT--
|
||
|
|
object(class@anonymous)#1 (0) {
|
||
|
|
}
|