aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/389_inline_assembly_bare_instructions.sol
blob: c44412cf10e96791e8ca6ad37810348a70852cf0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
contract C {
    function f() view public {
        assembly {
            address
            pop
        }
    }
}
// ----
// Warning: (75-82): The use of non-functional instructions is deprecated. Please use functional notation instead.
// Warning: (95-98): The use of non-functional instructions is deprecated. Please use functional notation instead.