solidity/test/libsolidity/syntaxTests/inlineAssembly/hex_assignment.sol
2021-04-08 15:03:33 +02:00

9 lines
102 B
Solidity

contract C {
function f() public pure {
assembly {
let x := hex"0011"
}
}
}
// ----