Arquivos
hhvm/hphp/test/quick/FPassS.php
T
ptarjan 503f75d08b Rename test directories
These names don't make sense now that we run both suites the same
way.
2013-04-17 09:06:51 -07:00

20 linhas
250 B
PHP

<?php
class NewClass {
static public $a;
}
function main() {
print "Test begin\n";
NewClass::$a = array(1,2,3);
while (($b = array_pop(NewClass::$a))) {
echo $b . "\n";
var_dump(NewClass::$a);
}
print "Test end\n";
}
main();