1--TEST--
2Test var_export() function : error conditions - recursive array
3--FILE--
4<?php
5$a[] =& $a;
6var_export($a, true);
7
8?>
9--EXPECTF--
10Warning: var_export does not handle circular references in %s on line %d
11