mirror of
https://github.com/php/php-src.git
synced 2026-03-30 04:02:19 +02:00
18 lines
165 B
PHP
18 lines
165 B
PHP
--TEST--
|
|
Memory leak on ** with result==op1 array
|
|
--FILE--
|
|
<?php
|
|
|
|
$x = [0];
|
|
$x **= 1;
|
|
var_dump($x);
|
|
|
|
$x = [0];
|
|
$x **= $x;
|
|
var_dump($x);
|
|
|
|
?>
|
|
--EXPECT--
|
|
int(0)
|
|
int(0)
|