Your IP : 216.73.216.48


Current Path : /hdd/hdd21/main/php/php-7.3.1/Zend/tests/anon/
Upload File :
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) {
}