363d1bb20f
This change is mostly for FB internal organizational reasons. Building is not effected beyond the fact that the target now lands in hphp/hhvm/hhvm rather than src/hhvm/hhvm.
10 linhas
97 B
PHP
10 linhas
97 B
PHP
<?php
|
|
|
|
$arr = array();
|
|
$a = $arr[123];
|
|
echo $a;
|
|
|
|
$obj = new stdclass;
|
|
$a = $obj->flubb;
|
|
echo $a;
|