Fix issue with calling a unique, non-persistent method
[hiphop-php.git] / hphp / test / slow / simple_xml / 1658.php
blobd87f046afceccc08374b2d34373e7e1e82030e01
1 <?php
3 $a = simplexml_load_string('<?xml version="1.0" encoding="utf-8"?><node><subnode><subsubnode>test</subsubnode></subnode></node>');
4 var_dump((array)($a->subnode->subsubnode));
5 var_dump((string)($a->subnode->subsubnode));