summaryrefslogtreecommitdiff
path: root/Zend/tests/enum/no-static-properties.phpt
blob: 4b823e98e9ffd6da9d042c27c261e2e8771bb4e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--TEST--
Enum disallows static properties
--FILE--
<?php

enum Foo {
    public static $bar;
}

?>
--EXPECTF--
Fatal error: Enums may not include properties in %s on line %d