1--TEST--
2Bug #47027 (var_export doesn't show numeric indices on ArrayObject)
3--FILE--
4<?php
5$ao = new ArrayObject(array (2 => "foo", "bar" => "baz"));
6var_export ($ao);
7?>
8--EXPECT--
9ArrayObject::__set_state(array(
10   2 => 'foo',
11   'bar' => 'baz',
12))
13