parser/tests/fixtures/0001/code.php

10 lines
190 B
PHP
Raw Normal View History

2022-11-28 18:20:31 +01:00
<?php
function foo(string $a = "", array $b = []): never {
exit(1);
}
function bar(int $a, float $b, string $c, true $d, false $e, null $f): null|string|int|float {
return null;
}