mirror of
https://github.com/php/php-src.git
synced 2024-12-20 23:39:46 +08:00
10 lines
106 B
Plaintext
10 lines
106 B
Plaintext
|
--TEST--
|
||
|
Bug #61225 (Lexing 0b0*+<NUM> incorectly)
|
||
|
--FILE--
|
||
|
<?php
|
||
|
echo 0b00+1;
|
||
|
echo "\n";
|
||
|
?>
|
||
|
--EXPECT--
|
||
|
1
|