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