summaryrefslogtreecommitdiff
path: root/tests/classes/interface_constant_inheritance_005.phpt
blob: 60bf222e85409b39c95543f798603657666cab2b (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