Handle this typehints
[hiphop-php.git] / hphp / test / slow / exceptions / 61.php
blobda846c9cc7bf22c779f3b8d45a219beddde6142f
1 <?php
3 class X {
4 static function eh($errno, $errstr) {
5 echo "eh: $errno\n";
6 die;
10 set_error_handler(array('X', 'eh'));
11 $g = array();
12 echo $g['foobar'];