1--TEST--
2var_export() and objects with numeric indexes properties
3--FILE--
4<?php
5$a = (object) array (1, 3, "foo" => "bar");
6var_export($a);
7?>
8--EXPECT--
9(object) array(
10   '0' => 1,
11   '1' => 3,
12   'foo' => 'bar',
13)
14