blob: 6d175a46490306c5fde1bd24c55069bb2fc8259b [file] [log] [blame]
<?php
test(
$a, $b, $c
);
$test = test(
$a, $b, $c
);
return test(
$a, $b, $c
);
new Test(
$a, $b, $c
);
$test = new Test(
$a, $b, $c
);
////////////////////////////////////////
test(
$a,
$b,
$c
);
$test = test(
$a,
$b,
$c
);
return test(
$a,
$b,
$c
);
new Test(
$a,
$b,
$c
);
$test = new Test(
$a,
$b,
$c
);
?>