summaryrefslogtreecommitdiff
path: root/Zend/tests/enum/constants.phpt
blob: cc983e5184ba8fe005c8c46cf65fcfc880db192c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--TEST--
Enum allows constants
--FILE--
<?php

enum Foo {
    const BAR = 'Bar';
}

echo Foo::BAR . "\n";

?>
--EXPECT--
Bar