Merge pull request #12227 from ethereum/smt_fix_gas

Fix ICE in CHC when using gas in the function options
This commit is contained in:
chriseth
2021-11-08 11:54:20 +01:00
committed by GitHub
3 changed files with 12 additions and 2 deletions
@@ -0,0 +1,9 @@
library L {
function f() public view {
(bool success, ) = address(10).staticcall{gas: 3}("");
require(success);
}
}
// ====
// SMTEngine: all
// ----