mirror of
https://github.com/php/php-langspec.git
synced 2026-03-24 07:12:08 +01:00
9 lines
183 B
PHP
9 lines
183 B
PHP
--TEST--
|
|
void return type: not valid as a parameter type
|
|
--FILE--
|
|
<?php
|
|
|
|
function foobar(void $a) {}
|
|
--EXPECTF--
|
|
Fatal error: void cannot be used as a parameter type in %s on line %d
|