solidity/test/libsolidity/syntaxTests/inlineAssembly/invalid/empty_fun_arg_middle.sol
2022-04-01 23:41:18 -05:00

11 lines
186 B
Solidity

contract C {
function f() public pure {
assembly {
function f(a, b, c) {}
f(1,,1)
}
}
}
// ----
// ParserError 1856: (96-97=','): Literal or identifier expected.