mirror of
https://github.com/php/php-src.git
synced 2024-12-14 04:16:30 +08:00
13 lines
272 B
PHP
13 lines
272 B
PHP
--TEST--
|
|
Bug #72944 (Null pointer deref in zval_delref_p).
|
|
--FILE--
|
|
<?php
|
|
"a"== e & $A = $A? 0 : 0 ?:0;
|
|
echo "OK\n";
|
|
?>
|
|
--EXPECTF--
|
|
Notice: Use of undefined constant e - assumed 'e' in %sbug72944.php on line 2
|
|
|
|
Notice: Undefined variable: A in %sbug72944.php on line 2
|
|
OK
|