mirror of
https://github.com/php/php-src.git
synced 2026-04-29 19:23:22 +02:00
1a78bdab27
Resolves out of memory error when consecutive numeric separators follow a binary/hex literal.
8 lines
173 B
PHP
8 lines
173 B
PHP
--TEST--
|
|
Invalid consecutive numeric separators after hex literal
|
|
--FILE--
|
|
<?php
|
|
0x0__F;
|
|
--EXPECTF--
|
|
Parse error: syntax error, unexpected '__F' (T_STRING) in %s on line %d
|