b0y-101 Mini Shell


Current Path : E:/www/b-group.old/spfin/phppayment/src/xdebug/tests/develop/
File Upload :
Current File : E:/www/b-group.old/spfin/phppayment/src/xdebug/tests/develop/bug01106.phpt

--TEST--
Test for bug #1106: A thrown Exception after a class with __debugInfo gives 2 errors
--INI--
xdebug.mode=develop
xdebug.show_local_vars=1
--FILE--
<?php

class A
{
    public function __debugInfo() { return array();}
}

$c = new A();
try{
    throw new \Exception("neee");
}
catch (\Exception $e) {
    die("all fine");
}
?>
--EXPECT--
all fine

Copyright © 2019 by b0y-101