hardhat-vscode
hardhat-vscode copied to clipboard
Escape character with \ in string not works
Minimal Reproducible Example:
contract Test {
function f(string memory s) pure returns (string memory) {
return string.concat("\"", string.concat(s, "\""));
}
}