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_constant_inheritance_005.phpt
2020-02-03 22:52:20 +01:00

13 lines
148 B
PHP

--TEST--
Ensure a interface can have public constants
--FILE--
<?php
interface IA {
public const FOO = 10;
}
echo "Done\n";
?>
--EXPECT--
Done