mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
35 lines
519 B
PHP
35 lines
519 B
PHP
--TEST--
|
|
Bug #30161 (Segmentation fault with exceptions)
|
|
--FILE--
|
|
<?php
|
|
class FIIFO {
|
|
|
|
public function __construct() {
|
|
throw new Exception;
|
|
}
|
|
|
|
}
|
|
|
|
class hariCow extends FIIFO {
|
|
|
|
public function __construct() {
|
|
try {
|
|
parent::__construct();
|
|
} catch(Exception $e) {
|
|
}
|
|
}
|
|
|
|
public function __toString() {
|
|
return "ok\n";
|
|
}
|
|
|
|
}
|
|
|
|
|
|
$db = new hariCow;
|
|
|
|
echo $db;
|
|
?>
|
|
--EXPECT--
|
|
ok
|