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