mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
7 lines
185 B
Solidity
7 lines
185 B
Solidity
error E1();
|
|
function f() pure {
|
|
revert(E1{gas: 10}());
|
|
}
|
|
// ----
|
|
// TypeError 2193: (43-54): Function call options can only be set on external function calls or contract creations.
|