summaryrefslogtreecommitdiff
path: root/tests/classes/interface_constant_inheritance_005.phpt
blob: 1abb85751e83e56abf64452363af639dace1a731 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--TEST--
Ensure a interface can have public constants
--FILE--
<?php
interface IA {
	public const FOO = 10;
}

echo "Done\n";
?>
--EXPECT--
Done