mirror of
https://github.com/php/php-src.git
synced 2026-04-21 15:08:16 +02:00
11 lines
118 B
PHP
11 lines
118 B
PHP
--TEST--
|
|
declare bare anonymous class
|
|
--FILE--
|
|
<?php
|
|
var_dump(new class{});
|
|
--EXPECTF--
|
|
object(class@%s)#%d (0) {
|
|
}
|
|
|
|
|