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

enum Foo {
    public string $name;
}

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