1--TEST--
2Test property guard hash value assumption
3--FILE--
4<?php
5class Test {
6    function __get($var) {
7        return $this->{$var.''};
8    }
9}
10
11$test = new Test;
12var_dump($test->x);
13?>
14--EXPECTF--
15Notice: Undefined property: Test::$x in %s on line %d
16NULL
17