mirror of
https://github.com/php/php-src.git
synced 2024-12-16 05:15:03 +08:00
10 lines
107 B
PHP
10 lines
107 B
PHP
--TEST--
|
|
Bug #61225 (Lexing 0b0*+<NUM> incorrectly)
|
|
--FILE--
|
|
<?php
|
|
echo 0b00+1;
|
|
echo "\n";
|
|
?>
|
|
--EXPECT--
|
|
1
|