1--TEST--
2Getting the address of an uninitialized property of a SimpleXMLElement
3--EXTENSIONS--
4simplexml
5--FILE--
6<?php
7
8$rc = new ReflectionClass('SimpleXMLElement');
9$sxe = $rc->newInstanceWithoutConstructor();
10$sxe->a['b'] = 'b';
11
12?>
13--EXPECTF--
14Fatal error: Uncaught Error: SimpleXMLElement is not properly initialized in %s:%d
15Stack trace:
16#0 {main}
17  thrown in %s on line %d
18