1--TEST--
2Bug #55082: var_export() doesn't escape properties properly
3--FILE--
4<?php
5    $x = new stdClass();
6    $x->{'\'\\'} = 7;
7    echo var_export($x);
8?>
9--EXPECT--
10(object) array(
11   '\'\\' => 7,
12)
13