1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 16:22:37 +01:00
Files
archived-php-src/tests/classes/interface_optional_arg_003.inc
2018-02-10 19:20:23 +01:00

5 lines
47 B
PHP

<?php
interface I {
function f($a = null);
}