solidity/test/libsolidity/syntaxTests/inlineAssembly/invalid/empty_fun_arg_middle.sol

11 lines
190 B
Solidity

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