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