mirror of
https://github.com/php/php-src.git
synced 2024-12-17 13:59:28 +08:00
307e476e86
Fixes oss-fuzz #38542
11 lines
143 B
PHP
11 lines
143 B
PHP
--TEST--
|
|
Bug #81216: Nullsafe operator leaks dynamic property name
|
|
--FILE--
|
|
<?php
|
|
$str = "foo";
|
|
null?->{$str . "bar"};
|
|
?>
|
|
DONE
|
|
--EXPECT--
|
|
DONE
|