1--TEST--
2Enums are not compatible with ArrayObject
3--FILE--
4<?php
5
6enum Foo {
7 case Bar;
8}
9
10new ArrayObject(Foo::Bar);
11
12?>
13--EXPECTF--
14Fatal error: Uncaught InvalidArgumentException: Enums are not compatible with ArrayObject in %s:%d
15%a
16