solidity/test/libsolidity/semanticTests/literals/escape.sol
2023-05-11 10:56:55 -05:00

12 lines
356 B
Solidity

pragma abicoder v2;
contract C
{
function f() public pure returns (uint, bytes1, bytes1) {
bytes memory encoded = abi.encodePacked("\\\\");
return (encoded.length, encoded[0], encoded[1]);
}
}
// ----
// f() -> 2, 0x5c00000000000000000000000000000000000000000000000000000000000000, 0x5c00000000000000000000000000000000000000000000000000000000000000