solidity/test/libsolidity/syntaxTests/nameAndTypeResolution/389_inline_assembly_bare_instructions.sol
2018-08-02 13:37:13 +01:00

12 lines
363 B
Solidity

contract C {
function f() view public {
assembly {
address
pop
}
}
}
// ----
// SyntaxError: (75-82): The use of non-functional instructions is disallowed. Please use functional notation instead.
// SyntaxError: (95-98): The use of non-functional instructions is disallowed. Please use functional notation instead.