--TEST--
Bug #49893 (Crash while creating an instance of Zend_Mail_Storage_Pop3)
--FILE--
<?php
class {
    function 
__destruct() {
        try {
            throw new 
Exception("2");
        } catch (
Exception $e) {
            echo 
$e->getMessage() . "\n";
        }
    }
}
class 
{
    function 
__construct() {
        
$this->= new A();
        throw new 
Exception("1");
    }
}
try {
    
$b = new B();
} catch(
Exception $e) {
    echo 
$e->getMessage() . "\n";;
}
?>
--EXPECT--
2
1