hardhat-vscode icon indicating copy to clipboard operation
hardhat-vscode copied to clipboard

Escape character with \ in string not works

Open Xeonacid opened this issue 11 months ago • 1 comments

Minimal Reproducible Example:

contract Test {
    function f(string memory s) pure returns (string memory) {
        return string.concat("\"", string.concat(s, "\""));
    }
}

image

Xeonacid avatar Mar 22 '24 08:03 Xeonacid