1
0
mirror of https://github.com/php/php-src.git synced 2026-04-28 18:53:33 +02:00
Files
archived-php-src/Zend/tests/enum/no-properties.phpt
T
2022-08-23 13:32:34 +02:00

13 lines
162 B
PHP

--TEST--
Enum disallows properties
--FILE--
<?php
enum Foo {
public $bar;
}
?>
--EXPECTF--
Fatal error: Enum Foo cannot include properties in %s on line %d