mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
14 lines
265 B
Solidity
14 lines
265 B
Solidity
|
contract C {
|
||
|
function f() public pure {
|
||
|
assembly {
|
||
|
function f(a, b) {}
|
||
|
f()
|
||
|
f(1,)
|
||
|
f(,1)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
// ----
|
||
|
// ParserError: (113-114): Literal, identifier or instruction expected.
|
||
|
// ParserError: (113-114): Expected primary expression.
|