solidity/test/libsolidity/syntaxTests/inlineAssembly/invalid/unbalanced_negative_stack.sol
2019-10-25 15:01:25 +02:00

10 lines
153 B
Solidity

contract test {
function f() public {
assembly {
pop
}
}
}
// ----
// ParserError: (85-86): Expected '(' but got '}'