solidity/test/libsolidity/syntaxTests/inlineAssembly/hex_assignment.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
161 B
Solidity

contract C {
function f() public pure {
assembly {
let x := hex"0011"
}
}
}
// ----
// ParserError 6913: (86-87): Call or assignment expected.