mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
16 lines
240 B
PHP
16 lines
240 B
PHP
--TEST--
|
|
Enums are not compatible with ArrayObject
|
|
--FILE--
|
|
<?php
|
|
|
|
enum Foo {
|
|
case Bar;
|
|
}
|
|
|
|
new ArrayObject(Foo::Bar);
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Uncaught InvalidArgumentException: Enums are not compatible with ArrayObject in %s:%d
|
|
%a
|