mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
7 lines
183 B
Solidity
7 lines
183 B
Solidity
|
function fun() {
|
||
|
fun{gas: 1}();
|
||
|
fun{value: 1}();
|
||
|
}
|
||
|
// ----
|
||
|
// TypeError 2193: (21-32): Function call options can only be set on external function calls or contract creations.
|