Handle this typehints
[hiphop-php.git] / hphp / test / slow / redeclared_classes / 1486.php
blobe5483328562f90d7b2216d264d9d10ca2b23ba9a
1 <?php
3 if (isset($g)) {
4 class c{
7 else {
8 class c{
11 class d extends c {
12 private $b = 'b';
13 function t2() {
14 foreach ($this as $k => $v) {
15 var_dump($v);
19 $x = new d;
20 $x->t2();