1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 08:12:21 +01:00
Files
archived-php-src/tests/classes/interface_optional_arg_003.inc
2018-10-13 14:14:50 +02:00

5 lines
47 B
PHP

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