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.
30 linhas
437 B
PHP
30 linhas
437 B
PHP
<?php
|
|
|
|
function f() {
|
|
$a = array();
|
|
echo $a[15410];
|
|
echo "In f: " . error_reporting() . "\n";
|
|
}
|
|
|
|
|
|
echo error_reporting() . "\n";
|
|
f();
|
|
echo error_reporting() . "\n";
|
|
@f();
|
|
echo error_reporting() . "\n";
|
|
|
|
function g() {
|
|
$a = array();
|
|
echo $a[15411];
|
|
echo "In g: " . error_reporting() . "\n";
|
|
error_reporting(15251);
|
|
}
|
|
|
|
echo error_reporting() . "\n";
|
|
@g();
|
|
echo error_reporting() . "\n";
|
|
|
|
$arr = array();
|
|
echo @$arr['nope'];
|
|
|