1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/ext/spl/tests/ArrayObject_enum.phpt
Ilija Tovilo d21bc7f1e6 Disallow enums in ArrayObject
Closes GH-15775
2024-09-26 22:21:09 +02:00

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