mirror of
https://github.com/php/php-src.git
synced 2026-04-24 16:38:25 +02:00
7 lines
86 B
PHP
7 lines
86 B
PHP
<?php
|
|
$a = true;
|
|
if ($a) {
|
|
function foo(...$arg) {
|
|
echo "Hello\n";
|
|
}
|
|
} |