aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/394_inline_assembly_050_leave_items_on_stack.sol
blob: f72fe741f057170b15040258a52352edc8828a65 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
pragma experimental "v0.5.0";
contract C {
    function f() pure public {
        assembly {
            mload(0)
        }
    }
}
// ----
// SyntaxError: (105-113): Top-level expressions are not supposed to return values (this expression returns 1 value). Use ``pop()`` or assign them.
// DeclarationError: (91-123): Unbalanced stack at the end of a block: 1 surplus item(s).