mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
9 lines
175 B
Solidity
9 lines
175 B
Solidity
contract D {}
|
|
contract C {
|
|
function foo(int a) pure internal {
|
|
a{val:5};
|
|
}
|
|
}
|
|
// ----
|
|
// TypeError 2622: (71-79): Expected callable expression before call options.
|