| Current Path : /hdd/hdd21/main/php/php-7.3.1/Zend/tests/anon/ |
| Current File : //hdd/hdd21/main/php/php-7.3.1/Zend/tests/anon/006.phpt |
--TEST--
testing anon classes inside namespaces
--FILE--
<?php
namespace lone {
$hello = new class{} ;
}
namespace {
var_dump ($hello);
}
--EXPECTF--
object(class@%s)#1 (0) {
}