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

9 lines
102 B
Solidity
Raw Normal View History

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