mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
9 lines
214 B
Solidity
9 lines
214 B
Solidity
contract D {}
|
|
contract C {
|
|
function foo(int a) pure external {
|
|
this.foo{random:5+5};
|
|
}
|
|
}
|
|
// ----
|
|
// TypeError 9318: (73-93): Unknown call option "random". Valid options are "salt", "value" and "gas".
|