solidity/test/libsolidity/syntaxTests/inlineAssembly/hex_expression.sol
Alex Beregszaszi caa329066e Do not emit Solidity-only tokens in the Scanner for Yul
And simplfiy AsmParser greatly.
2020-08-28 19:34:52 +01:00

10 lines
165 B
Solidity

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