bitcoin-sv / sol2scrypt

Solidity to sCrypt Transplier
BSD 3-Clause "New" or "Revised" License
1 stars 0 forks source link

parser: fail on hex "ff00_0000_0000_0004" #142

Open zhfnjust opened 2 years ago

zhfnjust commented 2 years ago
pragma solidity ^0.8.10;

contract Return {

    function test(uint x) public pure returns (bytes8) {

        return hex"ff00_0000_0000_0004";
    }

}