void_disallowed1.phpt   [plain text]


--TEST--
void return type: unacceptable cases: explicit NULL return
--FILE--
<?php

function foo(): void {
    return NULL; // not permitted in a void function
}

// Note the lack of function call: function validated at compile-time
--EXPECTF--
Fatal error: A void function must not return a value (did you mean "return;" instead of "return null;"?) in %s on line %d