mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Fix ICE in CHC when using gas in the function options
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
library L {
|
||||
function f() public view {
|
||||
(bool success, ) = address(10).staticcall{gas: 3}("");
|
||||
require(success);
|
||||
}
|
||||
}
|
||||
// ====
|
||||
// SMTEngine: all
|
||||
// ----
|
||||
Reference in New Issue
Block a user