//SPDX-License-Identifier: MIT
pragma solidity ^0.8.24;
contract Test{
function test() public pure returns (uint){
uint global = 0;
global ++;
return global;
}
}
it can be compiled successfully on remix:
but an exception was thrown when I use the parser to parse it
example code:
it can be compiled successfully on remix:
but an exception was thrown when I use the parser to parse it