mirror of
https://github.com/php/php-langspec.git
synced 2026-04-24 06:58:02 +02:00
21 lines
196 B
PHP
21 lines
196 B
PHP
--TEST--
|
|
void return type: acceptable cases
|
|
--FILE--
|
|
<?php
|
|
|
|
function foo(): void {
|
|
// okay
|
|
}
|
|
|
|
foo();
|
|
|
|
function bar(): void {
|
|
return; // okay
|
|
}
|
|
|
|
bar();
|
|
|
|
echo "OK!", PHP_EOL;
|
|
--EXPECT--
|
|
OK!
|