mirror of
https://github.com/php/php-src.git
synced 2024-12-02 22:34:55 +08:00
20 lines
324 B
PHP
20 lines
324 B
PHP
--TEST--
|
|
Bug #64821 Custom Exceptions crash when internal properties overridden (variation 2)
|
|
--FILE--
|
|
<?php
|
|
|
|
class a extends exception {
|
|
public function __construct() {
|
|
$this->line = array();
|
|
}
|
|
}
|
|
|
|
throw new a;
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Uncaught a in %s:0
|
|
Stack trace:
|
|
#0 {main}
|
|
thrown in %s on line %d
|