Arquivos
hhvm/hphp/test/quick/trailing_comma.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

21 linhas
230 B
PHP

<?php
function id($x,) {return $x;}
var_dump(id(1,));
function multiline(
$x,
$y,
) { return $x+$y; }
var_dump(multiline(
1,
2,
));
$x = 3;
$y = 4;
$c = function () use (
$x,
$y,
) { return $x+$y; };
var_dump($c());