Arquivos
hhvm/hphp/test/quick/short_array_syntax.php
T
Drew Paroski 4013bcede8 Need short array syntax here too
This corresponds to github pull request 777:
https://github.com/facebook/hiphop-php/pull/777
2013-05-20 13:52:31 -07:00

11 linhas
131 B
PHP

<?php
function f($x = [1]) {
return $x;
}
class C {
public static $y = [2, 3];
}
var_dump([]);
var_dump(f());
var_dump(C::$y);