mirror of
https://github.com/php/php-src.git
synced 2024-12-19 15:00:15 +08:00
10 lines
107 B
Plaintext
10 lines
107 B
Plaintext
|
--TEST--
|
||
|
Bug #61095 (Lexing 0x00*+<NUM> incorectly)
|
||
|
--FILE--
|
||
|
<?php
|
||
|
echo 0x00+2;
|
||
|
echo "\n";
|
||
|
?>
|
||
|
--EXPECT--
|
||
|
2
|