solidity/test/libsolidity/syntaxTests/inlineAssembly/hex_expression.sol

10 lines
165 B
Solidity
Raw Normal View History

contract C {
function f() public pure {
assembly {
pop(hex"2233")
}
}
}
// ----
// ParserError 2314: (70-76): Expected ',' but got 'StringLiteral'