mirror of
https://github.com/php/php-src.git
synced 2026-04-21 06:51:18 +02:00
Resolves out of memory error when consecutive numeric separators follow a binary/hex literal.
8 lines
175 B
PHP
8 lines
175 B
PHP
--TEST--
|
|
Invalid consecutive numeric separators after binary literal
|
|
--FILE--
|
|
<?php
|
|
0b0__1
|
|
--EXPECTF--
|
|
Parse error: syntax error, unexpected '__1' (T_STRING) in %s on line %d
|