mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
23 lines
501 B
PHP
23 lines
501 B
PHP
--TEST--
|
|
Bug #75002 Null Pointer Dereference in timelib_time_clone
|
|
--FILE--
|
|
<?php
|
|
|
|
class aaa extends DatePeriod {
|
|
public function __construct() { }
|
|
}
|
|
|
|
$start=new DateTime( '2012-08-01' );
|
|
|
|
foreach (new aaa($start) as $y) {
|
|
$a=$key;
|
|
}
|
|
|
|
?>
|
|
==DONE==
|
|
--EXPECTF--
|
|
Fatal error: Uncaught DateObjectError: Object of type DatePeriod has not been correctly initialized by calling parent::__construct() in its constructor in %sbug75002.php:%d
|
|
Stack trace:
|
|
#0 {main}
|
|
thrown in %sbug75002.php on line %d
|