php-src/Zend/tests/bug50005.phpt
Máté Kocsis 30a082cb16
Make some exception properties typed
Closes GH-6891
2021-04-22 10:22:50 +02:00

20 lines
330 B
PHP

--TEST--
Bug #50005 (Throwing through Reflection modified Exception object makes segmentation fault)
--FILE--
<?php
class a extends exception {
public function __construct() {
$this->file = "";
}
}
throw new a;
?>
--EXPECTF--
Fatal error: Uncaught a in :%d
Stack trace:
#0 {main}
thrown in Unknown on line %d