mirror of
https://github.com/php/php-src.git
synced 2025-08-18 06:58:55 +02:00
11 lines
203 B
PHP
11 lines
203 B
PHP
--TEST--
|
|
Assignments to illegal ArrayObject offsets shouldn't leak
|
|
--FILE--
|
|
<?php
|
|
|
|
$ao = new ArrayObject([1, 2, 3]);
|
|
$ao[[]] = new stdClass;
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Warning: Illegal offset type in %s on line %d
|