php-8.0.30-src/tests/classes/interface_constant_inherita...

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