solidity/test/libsolidity/syntaxTests/inlineAssembly/invalid/unbalanced_negative_stack.sol
2020-01-08 16:12:06 +01:00

10 lines
153 B
Solidity

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