--TEST--
Indirect referenced $this
--FILE--
<?php
class {
  function 
f($x){var_dump($$x);}
}
$x = new X;
$x->f("this");
?>
--EXPECTF--
object(X)#%d (0) {
}