solidity/test/libsolidity/syntaxTests/inlineAssembly/invalid/bare_instructions_disallowed.sol
2020-01-08 16:12:06 +01:00

11 lines
182 B
Solidity

contract C {
function f() view public {
assembly {
address
pop
}
}
}
// ----
// ParserError: (95-98): Expected "(" but got identifier