mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
7 lines
233 B
Solidity
7 lines
233 B
Solidity
contract test {
|
|
function a(uint a, uint b, uint c) returns (uint r) { r = a * 100 + b * 10 + c * 1; }
|
|
function b() returns (uint r) { r = a({a: , b: , c: }); }
|
|
}
|
|
// ----
|
|
// ParserError 6933: (146-147): Expected primary expression.
|