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

enum Foo: int {
    public int $value;
}

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