aboutsummaryrefslogblamecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/374_inline_assembly_unbalanced_negative_stack.sol
blob: 342afc464b76b44196ca5e8284763736e8b2488b (plain) (tree)
1
2
3
4
5
6
7
8
9







                         
                                                                                                                      
                                                                                        
contract test {
    function f() public {
        assembly {
            pop
        }
    }
}
// ----
// SyntaxError: (73-76): The use of non-functional instructions is disallowed. Please use functional notation instead.
// DeclarationError: (59-86): Unbalanced stack at the end of a block: 1 missing item(s).