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

12 lines
189 B
Solidity
Raw Normal View History

2018-10-24 12:29:33 +00:00
contract C {
function f() public pure {
assembly {
function f(a, b) {}
f()
f(,1)
}
}
}
// ----
// ParserError 1856: (101-102): Literal or identifier expected.