You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello! I encountered an internal compiler error when using the solc compiler version 0.8.27 to compile the following code. My compilation command was: solc-0.8.27 a.sol --model-checker-solvers smtlib2 --model-checker-engine bmc.
contractTest {
uint256public A;
uint256public constant B =1;
function g() publicreturns(uint256) {
A >>= ((B &0x3f) + B *64) -112;
return1;
}
}
Hello! I encountered an internal compiler error when using the solc compiler version 0.8.27 to compile the following code. My compilation command was:
solc-0.8.27 a.sol --model-checker-solvers smtlib2 --model-checker-engine bmc
.Output:
I compiled a new version of solc (71988f7) for testing, and the error persists.
The text was updated successfully, but these errors were encountered: