aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/388_inline_assembly_050_bare_instructions.sol
blob: 4a7aca8ab818f000aa4e1fb6c3de3a7aa502bd4a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
pragma experimental "v0.5.0";
contract C {
    function f() view public {
        assembly {
            address
            pop
        }
    }
}
// ----
// SyntaxError: (105-112): The use of non-functional instructions is deprecated. Please use functional notation instead.
// SyntaxError: (125-128): The use of non-functional instructions is deprecated. Please use functional notation instead.