mirror of
https://github.com/php/php-src.git
synced 2024-12-18 06:21:41 +08:00
13 lines
281 B
PHP
13 lines
281 B
PHP
--TEST--
|
|
Bug #52237 (Crash when passing the reference of the property of a non-object)
|
|
--FILE--
|
|
<?php
|
|
$data = 'test';
|
|
preg_match('//', '', $data->info);
|
|
var_dump($data);
|
|
?>
|
|
--EXPECTF--
|
|
|
|
Warning: Attempt to modify property of non-object in %sbug52237.php on line 3
|
|
string(4) "test"
|