solidity/test/libsolidity/ASTJSON/assembly/stringlit.sol
2019-11-13 12:13:22 +01:00

8 lines
92 B
Solidity

contract C {
function m() public {
assembly { let x := "abc" }
}
}
// ----